diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9a68b46..7e5fc57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Poppins } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Your Web - AI-Powered Websites for Small to Large Businesses", description: "Get a professional website for your business starting at $50/month. Chicago-based AI web design by Neo Cymian. Call 312-237-0726 for a free consultation.", keywords: "web design, website builder, small business website, AI web design, Chicago web design, affordable websites", metadataBase: new URL("https://yourweb.com"), - alternates: { - canonical: "https://yourweb.com"}, - openGraph: { - title: "Your Web - AI-Powered Website Solutions", description: "Professional websites for your business. Starting at $50/month with one-time investment. Created by Neo Cymian, 4.5★ rated AI expert.", url: "https://yourweb.com", siteName: "Your Web", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/looking-desperate-frustrated-stressed-unhappy-annoyed-shouting-screaming_1194-204464.jpg", alt: "Your Web - Satisfied Customer"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Your Web - AI-Powered Website Solutions", description: "Professional websites starting at $50/month. Call 312-237-0726", images: ["http://img.b2bpic.net/free-photo/looking-desperate-frustrated-stressed-unhappy-annoyed-shouting-screaming_1194-204464.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Your Web - AI-Powered Websites for Your Business", description: "Get a professional website for your business in days, not months. Starting at $50/month."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -