diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bdbe10f..4579510 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,71 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Public_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "AXIOM Research - Research Peptides & IV Therapy in Bali", - description: "Premium research-grade peptides and wellness protocols in Bali. Fast delivery, laboratory-tested compounds. Order via WhatsApp.", - keywords: "peptides, research, Bali, IV therapy, biotech, wellness protocols", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "AXIOM Research - Science-Led Peptide Protocols", - description: "High quality research peptides and IV therapy services with fast daily delivery in Bali.", - type: "website", - siteName: "AXIOM Research", - images: [ - { - url: "http://img.b2bpic.net/free-photo/young-man-scientist-looking-pensive-chemical-solution-test-tubes-team-chemical-chemists-working-together-sterile-microbiology-lab-doing-research_482257-10055.jpg", - alt: "AXIOM Research peptides", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "AXIOM Research - Premium Peptides in Bali", - description: "Research-grade peptides and IV therapy. Fast daily delivery.", - images: [ - "http://img.b2bpic.net/free-photo/young-man-scientist-looking-pensive-chemical-solution-test-tubes-team-chemical-chemists-working-together-sterile-microbiology-lab-doing-research_482257-10055.jpg", - ], - }, -}; + title: "AXIOM Research - Premium Research Peptides in Bali", description: "Science-led peptide protocols in Bali. High quality research peptides and wellness protocols with fast daily delivery."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}