8 Commits

Author SHA1 Message Date
a26902368a Merge version_3 into main
Merge version_3 into main
2026-03-04 16:38:10 +00:00
8ca0bd5649 Update src/app/page.tsx 2026-03-04 16:38:06 +00:00
efccd62a46 Update src/app/layout.tsx 2026-03-04 16:38:06 +00:00
690c39d1ec Merge version_2 into main
Merge version_2 into main
2026-03-04 16:36:29 +00:00
2f64afcddf Update src/app/page.tsx 2026-03-04 16:36:25 +00:00
c83e5c85dc Merge version_2 into main
Merge version_2 into main
2026-03-04 16:35:13 +00:00
f1dca19d14 Update src/app/page.tsx 2026-03-04 16:35:09 +00:00
9395c637f1 Merge version_1 into main
Merge version_1 into main
2026-03-04 16:34:27 +00:00
2 changed files with 7 additions and 37 deletions

View File

@@ -1,49 +1,20 @@
import type { Metadata } from "next";
import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Webild - Web Design & IT Services for Small Business", description: "Expert web design, development, and IT support for small businesses. Transform your digital presence with Webild.", keywords: "web design, web development, IT support, small business websites, digital strategy", openGraph: {
title: "Webild - Web Design & IT Solutions", description: "Professional web design and IT services tailored for small businesses.", type: "website", siteName: "Webild", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUKxbRjUw7DsFW8ZsVhrJvJfzc/a-modern-sleek-web-design-agency-dashboa-1772642023082-09a2c494.png", alt: "Webild web design services"},
],
},
twitter: {
card: "summary_large_image", title: "Webild - Web Design & IT Services", description: "Transform your digital presence with expert web design and IT support", images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUKxbRjUw7DsFW8ZsVhrJvJfzc/a-modern-sleek-web-design-agency-dashboa-1772642023082-09a2c494.png"],
},
robots: {
index: true,
follow: true,
},
};
title: "Webild - Web Design & IT Services", description: "Expert web design and IT solutions for small businesses"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -184,7 +184,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactCenter
tag="Get Started"
title="Ready to Elevate Your Digital Presence?"
title="Schedule Your Free Web Strategy Session Today"
description="Let's discuss your project. Whether you need a stunning new website or IT support, we're here to help your business succeed."
background={{ variant: "rotated-rays-animated-grid" }}
useInvertedBackground={false}