Update src/app/layout.tsx

This commit is contained in:
2026-03-06 05:01:00 +00:00
parent 07891c863a
commit bde5b07d8f

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1413,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}