3 Commits

Author SHA1 Message Date
4297208408 Update src/app/page.tsx 2026-03-07 08:24:18 +00:00
59bee03a25 Update src/app/layout.tsx 2026-03-07 08:24:17 +00:00
7eab13db42 Merge version_1 into main
Merge version_1 into main
2026-03-07 08:19:34 +00:00
2 changed files with 7 additions and 49 deletions

View File

@@ -1,61 +1,20 @@
import type { Metadata } from "next"; 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 { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const interTight = Inter_Tight({ const inter = Inter({ subsets: ["latin"] });
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"],
});
export const metadata: Metadata = { 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"), title: "WW Digital | Web Design & Development", description: "Fast. Reliable. Experienced. Your Web Presence, Upgraded. High-performance websites designed to convert."};
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
}
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${interTight.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1423,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

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