4 Commits

Author SHA1 Message Date
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
c83e5c85dc Merge version_2 into main
Merge version_2 into main
2026-03-04 16:35:13 +00:00
2 changed files with 7 additions and 37 deletions

View File

@@ -1,49 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const dmSans = DM_Sans({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-dm-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = { 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 Services", description: "Expert web design and IT solutions for small businesses"};
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,
},
};
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={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -184,7 +184,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactCenter <ContactCenter
tag="Get Started" 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." 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" }} background={{ variant: "rotated-rays-animated-grid" }}
useInvertedBackground={false} useInvertedBackground={false}