diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0307fb5..92da0d3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,24 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Verdentix | Agricultural Biotechnology Solutions", description: "Transform your farm with Verdentix biotechnology solutions. AI-powered monitoring, genomic editing, and blockchain traceability for sustainable agriculture.", keywords: "agricultural biotechnology, sustainable farming, CRISPR, precision agriculture, crop yield, AI monitoring, biotech solutions", metadataBase: new URL("https://verdentix.com"), - alternates: { - canonical: "https://verdentix.com"}, - openGraph: { - title: "Verdentix | Revolutionizing Agriculture with Biotechnology", description: "Unlock the full potential of your farms with cutting-edge biotechnology solutions.", url: "https://verdentix.com", siteName: "Verdentix", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUNr9CUwPWOpcdPyKt1Fh5GeqC/a-sweeping-aerial-view-of-a-vast-verdant-1772644133396-f46872be.png", alt: "A sweeping aerial view of a vast, verdant agricultural field with rows of healthy green crops. Golde"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Verdentix | Agricultural Biotechnology Solutions", description: "Transform your farm with AI-powered monitoring, genomic editing, and blockchain traceability.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUNr9CUwPWOpcdPyKt1Fh5GeqC/a-sweeping-aerial-view-of-a-vast-verdant-1772644133396-f46872be.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Verdentix - Sustainable Biotechnology Solutions", description: "Revolutionary biotechnology solutions for sustainable agriculture"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +