Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-07 08:24:22 +00:00
2 changed files with 7 additions and 49 deletions

View File

@@ -1,61 +1,20 @@
import type { Metadata } from "next";
import { Inter_Tight } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const interTight = Inter_Tight({
variable: "--font-inter-tight", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "WW Digital | High-Performance Web Design & Development Agency", description: "Fast, reliable web design and development services. WW Digital builds high-converting websites for B2B, SaaS, and e-commerce businesses. Proven expertise with 500+ projects.", keywords: "web design, web development, agency, SaaS development, e-commerce websites, high-performance websites, digital solutions", metadataBase: new URL("https://www.wwdigital.com"),
alternates: {
canonical: "https://www.wwdigital.com"
},
openGraph: {
title: "WW Digital | Web Design & Development", description: "High-performance websites that convert. Fast. Reliable. Experienced.", url: "https://www.wwdigital.com", siteName: "WW Digital", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbpbpvRWohWkQTiHmuJ0VULfyL/a-modern-sleek-web-dashboard-interface-s-1772871442704-0048fd48.png", alt: "WW Digital - High-performance web development"
}
],
type: "website"
},
twitter: {
card: "summary_large_image", title: "WW Digital | Web Design & Development Agency", description: "Fast, reliable web design and development services. Let's upgrade your web presence.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbpbpvRWohWkQTiHmuJ0VULfyL/a-modern-sleek-web-dashboard-interface-s-1772871442704-0048fd48.png"]
},
robots: {
index: true,
follow: true
}
};
title: "WW Digital | Web Design & Development", description: "Fast. Reliable. Experienced. Your Web Presence, Upgraded. High-performance websites designed to convert."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${interTight.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1423,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -50,7 +50,7 @@ export default function LandingPage() {
tagAnimation="slide-up"
background={{ variant: "canvas-reveal" }}
buttons={[
{ text: "Start Your Project", href: "contact" },
{ text: "Get Your Free Quote", href: "contact" },
{ text: "View Our Work", href: "portfolio" }
]}
buttonAnimation="slide-up"