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 { Raleway } from "next/font/google";
|
||||
import { Outfit } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const raleway = Raleway({
|
||||
variable: "--font-raleway", subsets: ["latin"],
|
||||
});
|
||||
const outfit = Outfit({ subsets: ["latin"] });
|
||||
|
||||
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: {
|
||||
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"],
|
||||
},
|
||||
};
|
||||
title: "Webuild - Web Design Studio", description: "Create beautiful, high-performance websites that help businesses grow"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${raleway.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={outfit.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1406,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -51,8 +51,8 @@ export default function LandingPage() {
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
buttons={[
|
||||
{ text: "View Our Work", href: "portfolio" },
|
||||
{ text: "Start a Project", href: "contact" },
|
||||
{ text: "See Portfolio", href: "portfolio" },
|
||||
]}
|
||||
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"
|
||||
@@ -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"
|
||||
},
|
||||
]}
|
||||
avatarText="Trusted by 50+ businesses"
|
||||
avatarText="Trusted by 50+ businesses | 98% satisfaction rate"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -357,4 +357,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user