Merge version_2 into main #3

Merged
bender merged 2 commits from version_2 into main 2026-03-05 03:08:39 +00:00
2 changed files with 9 additions and 65 deletions

View File

@@ -1,75 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Poppins } 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 poppins = Poppins({
variable: "--font-poppins",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Creative Web Agency | Web Development & Design",
description: "Professional web design and development services. We create stunning, high-performing websites that drive growth for businesses.",
keywords: "web design, web development, creative agency, website design, digital solutions",
metadataBase: new URL("https://creativewebagency.com"),
alternates: {
canonical: "https://creativewebagency.com",
},
openGraph: {
title: "Creative Web Agency | Web Development & Design",
description: "Professional web design and development services for modern businesses",
url: "https://creativewebagency.com",
siteName: "Creative Web Agency",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVZXctc17uMFQ7zoTfanEtov5d/a-modern-web-development-dashboard-inter-1772679876736-0b076f50.png",
alt: "Creative Web Agency - Web Development Services",
},
],
},
twitter: {
card: "summary_large_image",
title: "Creative Web Agency | Web Development & Design",
description: "Professional web design and development services",
images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVZXctc17uMFQ7zoTfanEtov5d/a-modern-web-development-dashboard-inter-1772679876736-0b076f50.png"],
},
robots: {
index: true,
follow: true,
},
};
title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1437,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -127,7 +127,7 @@ export default function HomePage() {
title: "Ongoing Support", description: "Dedicated support team to maintain, update, and enhance your web presence"},
]}
title="Services We Offer"
description="Comprehensive web solutions tailored to your business needs"
description="Comprehensive web solutions tailored to your business needs. Launch in days, not months - with guaranteed ROI or your investment back."
tag="Our Expertise"
tagIcon={Zap}
tagAnimation="slide-up"
@@ -250,4 +250,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}