5 Commits

Author SHA1 Message Date
a6d788d9cd Update src/app/page.tsx 2026-03-03 17:15:14 +00:00
6dc64fcdef Update src/app/layout.tsx 2026-03-03 17:15:12 +00:00
6e7aebca23 Merge version_1 into main
Merge version_1 into main
2026-03-03 17:00:56 +00:00
62f64b0b7d Merge version_1 into main
Merge version_1 into main
2026-03-03 16:53:10 +00:00
6ab4a2f685 Merge version_1 into main
Merge version_1 into main
2026-03-03 16:46:42 +00:00
2 changed files with 8 additions and 33 deletions

View File

@@ -1,44 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Raleway } from "next/font/google"; import { Outfit } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const raleway = Raleway({ const outfit = Outfit({ subsets: ["latin"] });
variable: "--font-raleway", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Webuild - Web Design & Development Studio", description: "Professional web design and development for businesses. Custom websites, e-commerce, and ongoing support to help your business grow online.", keywords: "web design, web development, custom websites, e-commerce, digital agency", robots: { title: "Webuild - Web Design Studio", description: "Create beautiful, high-performance websites that help businesses grow"};
index: true,
follow: true,
},
metadataBase: new URL("https://webuild.com"),
alternates: {
canonical: "https://webuild.com"},
openGraph: {
title: "Webuild - Web Design & Development Studio", description: "Professional web design and development for businesses. Build stunning websites that convert.", url: "https://webuild.com", siteName: "Webuild", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARW3x2rw8IF2jMdw0m9OHUElVB/a-modern-web-design-studio-workspace-wit-1772555742391-781100a1.png", alt: "Webuild web design studio"},
],
},
twitter: {
card: "summary_large_image", title: "Webuild - Web Design & Development Studio", description: "Professional web design and development for businesses.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARW3x2rw8IF2jMdw0m9OHUElVB/a-modern-web-design-studio-workspace-wit-1772555742391-781100a1.png"],
},
};
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={outfit.className}>{children}
<body className={`${raleway.variable} antialiased`}>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1406,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -51,8 +51,8 @@ export default function LandingPage() {
tagAnimation="slide-up" tagAnimation="slide-up"
background={{ variant: "sparkles-gradient" }} background={{ variant: "sparkles-gradient" }}
buttons={[ buttons={[
{ text: "View Our Work", href: "portfolio" },
{ text: "Start a Project", href: "contact" }, { text: "Start a Project", href: "contact" },
{ text: "See Portfolio", href: "portfolio" },
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARW3x2rw8IF2jMdw0m9OHUElVB/a-modern-web-design-studio-workspace-wit-1772555742391-781100a1.png" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARW3x2rw8IF2jMdw0m9OHUElVB/a-modern-web-design-studio-workspace-wit-1772555742391-781100a1.png"