diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f360cea..55631c9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,30 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; +import { Poppins, Playfair_Display } 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 poppins = Poppins({ + subsets: ["latin"], + variable: "--font-poppins", weight: ["400", "500", "600", "700", "800"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const playfair = Playfair_Display({ + subsets: ["latin"], + variable: "--font-playfair", weight: ["400", "500", "600", "700"], }); export const metadata: Metadata = { - title: "Kiborg: Honest Apple Device Recommendations | Premium Tech Consulting", description: "Find the perfect Apple device for your needs. Kiborg offers guided device selection, transparent pricing, and lifetime support—no upselling, just honest expertise.", keywords: "Apple devices, iPhone, MacBook, iPad, tech consultant, device recommendation, electronics retailer", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Kiborg: Honest Apple Device Recommendations", description: "Find the perfect Apple device tailored to your goals and budget with our guided selection process.", type: "website", siteName: "Kiborg", images: [ - { - url: "http://img.b2bpic.net/free-photo/laptop-phone-marble-table_53876-71230.jpg", alt: "Kiborg: Premium Apple devices and expert guidance"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Kiborg: Honest Apple Device Recommendations", description: "Find the perfect Apple device tailored to your goals and budget.", images: ["http://img.b2bpic.net/free-photo/laptop-phone-marble-table_53876-71230.jpg"], - }, -}; + title: "Kiborg - Expert Apple Device Selection Guide", description: "Find your perfect Apple device with personalized recommendations. Take our guided quiz to get honest advice based on your needs, budget, and workflow."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +