deleted ggogle font and changes in docker config
This commit is contained in:
@ -1,16 +1,16 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
// import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
|
||||
const geistSans = Geist({
|
||||
variable: "--font-geist-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
// const geistSans = Geist({
|
||||
// variable: "--font-geist-sans",
|
||||
// subsets: ["latin"],
|
||||
// });
|
||||
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
// const geistMono = Geist_Mono({
|
||||
// variable: "--font-geist-mono",
|
||||
// subsets: ["latin"],
|
||||
// });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Operify Tech - A Leader in Next Generation Sequencing (NGS) Technology",
|
||||
@ -24,9 +24,10 @@ export default function RootLayout({
|
||||
}>) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body
|
||||
{/* <body
|
||||
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
|
||||
>
|
||||
> */}
|
||||
<body>
|
||||
{children}
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
import React from 'react';
|
||||
import PageLayout from '../components/Layout/PageLayout';
|
||||
import ResearchHero from '../components/Research/ResearchHero'
|
||||
import PlantResearch from '../components/Research/PlantResearch';
|
||||
import ResearchHero from '../components/research/ResearchHero'
|
||||
import PlantResearch from '../components/research/PlantResearch';
|
||||
import AnimalResearch from '../components/research/AnimalResearch';
|
||||
import MicrobialResearch from '../components/research/MicrobialResearch';
|
||||
import HumanResearch from '../components/research/HumanResearch';
|
||||
|
||||
Reference in New Issue
Block a user