Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 09f7f74f8a | |||
| f140731ea0 | |||
| ed9d9a5d55 | |||
| a6d788d9cd | |||
| 6dc64fcdef | |||
| 6e7aebca23 | |||
| 62f64b0b7d | |||
| 6ab4a2f685 |
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -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"
|
||||||
@@ -69,7 +69,7 @@ export default function LandingPage() {
|
|||||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARW3x2rw8IF2jMdw0m9OHUElVB/professional-headshot-of-a-diverse-team--1772555739874-5b5ed719.png", alt: "Team member 3"
|
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARW3x2rw8IF2jMdw0m9OHUElVB/professional-headshot-of-a-diverse-team--1772555739874-5b5ed719.png", alt: "Team member 3"
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
avatarText="Trusted by 50+ businesses"
|
avatarText="Trusted by 50+ businesses | 98% satisfaction rate"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -357,4 +357,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user