6 Commits

Author SHA1 Message Date
40d9d251cf Merge version_2 into main
Merge version_2 into main
2026-03-08 01:51:21 +00:00
4888607858 Update src/app/page.tsx 2026-03-08 01:51:17 +00:00
d2570d886e Update src/app/layout.tsx 2026-03-08 01:51:17 +00:00
e3e0afc362 Merge version_1 into main
Merge version_1 into main
2026-03-06 01:40:34 +00:00
50dfc95258 Merge version_1 into main
Merge version_1 into main
2026-03-06 01:39:49 +00:00
2381045048 Merge version_1 into main
Merge version_1 into main
2026-03-06 01:38:34 +00:00
2 changed files with 16 additions and 44 deletions

View File

@@ -1,59 +1,28 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const geist = Geist({
variable: "--font-halant", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", subsets: ["latin"], variable: "--font-geist-mono", subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Professional Web Design & Development Services | Webuild", description: "Build reliable business websites that drive results. Custom web design, development, and ongoing support for growing companies.", keywords: "web design, website development, business websites, custom development, web solutions, professional sites", metadataBase: new URL("https://webuild.io"), title: "Webuild - Professional Web Design & Development Agency", description: "Build reliable business websites that drive results. Professional web design and development solutions tailored to your business needs."};
alternates: {
canonical: "https://webuild.io"
},
openGraph: {
title: "Professional Web Design & Development Services | Webuild", description: "Build reliable business websites that drive results. Custom web design, development, and ongoing support.", type: "website", siteName: "Webuild", url: "https://webuild.io", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYEC1e7FnNfb63gwMfUVQiOqRR/a-modern-web-design-agency-website-showc-1772761064951-a229ae5a.png", alt: "Webuild - Web Design Agency"
}
]
},
twitter: {
card: "summary_large_image", title: "Professional Web Design & Development Services | Webuild", description: "Build reliable business websites that drive results.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYEC1e7FnNfb63gwMfUVQiOqRR/a-modern-web-design-agency-website-showc-1772761064951-a229ae5a.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={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1421,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -88,6 +88,10 @@ export default function LandingPage() {
tag="What We Offer" tag="What We Offer"
tagIcon={Sparkles} tagIcon={Sparkles}
tagAnimation="blur-reveal" tagAnimation="blur-reveal"
buttons={[
{ text: "Get a Free Consultation", href: "contact" }
]}
buttonAnimation="blur-reveal"
features={[ features={[
{ icon: Code, title: "Custom Web Development", description: "Bespoke websites built from scratch with the latest technologies and frameworks. Fully responsive, accessible, and optimized for performance." }, { icon: Code, title: "Custom Web Development", description: "Bespoke websites built from scratch with the latest technologies and frameworks. Fully responsive, accessible, and optimized for performance." },
{ icon: Zap, title: "Reliable Performance", description: "Lightning-fast load times, minimal downtime, and exceptional stability. Your website is built to handle traffic spikes without breaking a sweat." }, { icon: Zap, title: "Reliable Performance", description: "Lightning-fast load times, minimal downtime, and exceptional stability. Your website is built to handle traffic spikes without breaking a sweat." },