diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c14b17d..9dc7a67 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,22 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "ArayaDigital | Web Design for Local Businesses", description: "Fast, beautiful, conversion-focused websites for restaurants, salons, contractors & retail shops. Transparent pricing. 2-4 week turnaround. Get a free quote.", keywords: "web design agency, local business website, restaurant website, salon website, contractor website, custom web design, small business web design, conversion-focused website", openGraph: { - title: "ArayaDigital | Web Design for Local Businesses", description: "Transform your local business with a world-class website built for conversions.", url: undefined, - siteName: "ArayaDigital", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/gradient-responsive-website-design_23-2149483543.jpg", alt: "ArayaDigital web design showcase"}, - ], - }, - twitter: { - card: "summary_large_image", title: "ArayaDigital | Web Design for Local Businesses", description: "Transform your local business with a world-class website built for conversions.", images: ["http://img.b2bpic.net/free-vector/gradient-responsive-website-design_23-2149483543.jpg"], - }, -}; + title: "ArayaDigital - Web Design for Local Businesses", description: "Beautiful, fast-loading websites designed to convert customers. We specialize in web design for restaurants, salons, contractors, and retail shops."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +