8 Commits

Author SHA1 Message Date
0c2bd396e7 Update src/app/page.tsx 2026-03-06 02:13:08 +00:00
6c72d682ce Update src/app/layout.tsx 2026-03-06 02:13:07 +00:00
12920ff574 Merge version_2 into main
Merge version_2 into main
2026-03-06 02:07:50 +00:00
b31df5a874 Update src/app/page.tsx 2026-03-06 02:07:46 +00:00
cbbf101113 Update src/app/layout.tsx 2026-03-06 02:07:45 +00:00
8c13e640b9 Merge version_1 into main
Merge version_1 into main
2026-03-06 02:06:37 +00:00
886c9f4ffa Merge version_1 into main
Merge version_1 into main
2026-03-06 02:05:47 +00:00
b4544835ad Merge version_1 into main
Merge version_1 into main
2026-03-06 02:04:32 +00:00
2 changed files with 8 additions and 44 deletions

View File

@@ -1,55 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
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"],
});
const inter = Inter({ subsets: ["latin"] });
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: {
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"],
},
};
title: "WebStudio - Web Design Agency", description: "We design and build beautiful, high-converting websites that elevate your brand and engage your audience."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -45,6 +45,8 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroSplitDualMedia
title="Stunning Websites That Drive Results"
rating={5}
ratingText="Trusted by 50+ Companies Worldwide"
description="We design and build beautiful, high-converting websites that elevate your brand and engage your audience. From concept to launch, we craft digital experiences that matter."
tag="Web Design Agency"
tagIcon={Sparkles}
@@ -64,8 +66,6 @@ export default function LandingPage() {
},
]}
mediaAnimation="slide-up"
rating={5}
ratingText="Trusted by 50+ Companies Worldwide"
/>
</div>