Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b31df5a874 | |||
| cbbf101113 | |||
| 8c13e640b9 | |||
| 886c9f4ffa | |||
| b4544835ad |
@@ -1,55 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Nunito_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 inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const nunitoSans = Nunito_Sans({
|
|
||||||
variable: "--font-nunito-sans", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "WebStudio | Web Design & Development Agency", description: "Professional web design and development services. We create beautiful, high-converting websites that drive business results. 500+ projects delivered.", keywords: "web design, web development, digital agency, website design, e-commerce, SaaS development", robots: {
|
title: "WebStudio - Web Design Agency", description: "Stunning websites that drive results"};
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "WebStudio | Web Design & Development Agency", description: "Professional web design and development services. We create beautiful, high-converting websites that drive business results.", type: "website", siteName: "WebStudio", images: [
|
|
||||||
{
|
|
||||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYHPbE4TSqSbVsn4YVBcRdJzpQ/a-modern-web-design-agency-workspace-sho-1772762624353-7b47565e.png", alt: "WebStudio - Web Design Agency"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "WebStudio | Web Design & Development Agency", description: "Professional web design and development services for your business.", images: [
|
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYHPbE4TSqSbVsn4YVBcRdJzpQ/a-showcase-of-multiple-beautiful-website-1772762622248-fad76374.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={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1417,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -233,7 +233,7 @@ export default function LandingPage() {
|
|||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplitForm
|
<ContactSplitForm
|
||||||
title="Let's Create Something Great Together"
|
title="Let's Create Something Great Together"
|
||||||
description="Ready to transform your digital presence? Get in touch with our team. We'll discuss your project, goals, and how we can help your business succeed online."
|
description="✓ Free consultation • ✓ No credit card required • ✓ Response within 24 hours"
|
||||||
inputs={[
|
inputs={[
|
||||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||||
{ name: "email", type: "email", placeholder: "your@email.com", required: true },
|
{ name: "email", type: "email", placeholder: "your@email.com", required: true },
|
||||||
|
|||||||
Reference in New Issue
Block a user