Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 10:40:52 +00:00
2 changed files with 12 additions and 31 deletions

View File

@@ -1,40 +1,22 @@
import type { Metadata } from "next";
import { Public_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import './globals.css';
const publicSans = Public_Sans({
variable: "--font-public-sans", subsets: ["latin"],
});
const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = {
title: "Web Development & Automation | Your Company", description: "Build stunning websites and automate your business systems. We help SMBs increase leads, boost sales, and save time with modern web solutions.", keywords: "web development, automation, web design, business automation, app development", openGraph: {
title: "Build Better Websites. Automate Everything.", description: "Web development and business automation solutions for small and medium businesses.", siteName: "Your Company", type: "website"
},
twitter: {
card: "summary_large_image", title: "Web Development & Automation Services", description: "Transform your business with custom websites and smart automation."
},
robots: {
index: true,
follow: true
}
title: 'Your Company - Web Development & Automation',
description: 'Build better websites and automate everything. We help small and medium businesses create stunning websites and automate repetitive systems.',
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${publicSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1402,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -208,8 +208,8 @@ export default function LandingPage() {
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="Enter your email"
buttonText="Send Message"
termsText="We'll get back to you within 24 hours. Your privacy is important to us."
buttonText="Schedule Call"
termsText="Schedule a free 15-minute consultation—no commitment required"
/>
</div>