6 Commits

Author SHA1 Message Date
79de8fd6d9 Merge version_3 into main
Merge version_3 into main
2026-03-03 16:11:24 +00:00
dfb71bed00 Update src/app/layout.tsx 2026-03-03 16:11:14 +00:00
1b4b33d04a Merge version_2 into main
Merge version_2 into main
2026-03-03 15:54:14 +00:00
e0967a068c Update src/app/page.tsx 2026-03-03 15:54:09 +00:00
bb8026a8e0 Merge version_2 into main
Merge version_2 into main
2026-03-03 15:51:05 +00:00
57222614b0 Update src/app/page.tsx 2026-03-03 15:50:59 +00:00
2 changed files with 11 additions and 45 deletions

View File

@@ -1,54 +1,21 @@
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 { Source_Sans_3 } from "next/font/google"; import "./styles/variables.css";
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 sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Webuild - Web Development & Design Studio", description: "Custom websites and web applications built for growth. Expert web developers and designers creating digital solutions.", keywords: "web development, web design, custom websites, web applications, digital solutions", robots: { title: "Webuild - Web Development Studio", description: "Custom web development and design services for startups and businesses"};
index: true,
follow: true,
},
openGraph: {
title: "Webuild - Web Development Studio", description: "Build stunning digital experiences with our expert team of developers and designers", type: "website", siteName: "Webuild", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARPm31BXjFGO3byPj4ZVpdIhR8/a-modern-sleek-web-development-dashboard-1772552655029-c2724723.png", alt: "Webuild web development studio"},
],
},
twitter: {
card: "summary_large_image", title: "Webuild - Web Development & Design", description: "Expert web development and design services", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARPm31BXjFGO3byPj4ZVpdIhR8/a-modern-sleek-web-development-dashboard-1772552655029-c2724723.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} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1416,7 +1383,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -87,10 +87,6 @@ export default function LandingPage() {
tagIcon={Code} tagIcon={Code}
tagAnimation="slide-up" tagAnimation="slide-up"
features={[ features={[
{
icon: Globe,
title: "Web Design", description: "Beautiful, responsive websites that engage visitors and reflect your brand identity with modern design principles."
},
{ {
icon: Zap, icon: Zap,
title: "Web Development", description: "Robust, scalable web applications built with cutting-edge technologies for optimal performance and security." title: "Web Development", description: "Robust, scalable web applications built with cutting-edge technologies for optimal performance and security."
@@ -99,6 +95,10 @@ export default function LandingPage() {
icon: Settings, icon: Settings,
title: "E-Commerce Solutions", description: "Fully functional online stores with payment integration, inventory management, and conversion optimization." title: "E-Commerce Solutions", description: "Fully functional online stores with payment integration, inventory management, and conversion optimization."
}, },
{
icon: Globe,
title: "Web Design", description: "Beautiful, responsive websites that engage visitors and reflect your brand identity with modern design principles."
},
{ {
icon: Smartphone, icon: Smartphone,
title: "Mobile Responsive", description: "Seamlessly designed for all devices. Every project is built mobile-first for the best user experience." title: "Mobile Responsive", description: "Seamlessly designed for all devices. Every project is built mobile-first for the best user experience."