4 Commits

Author SHA1 Message Date
88658e83e2 Update src/app/page.tsx 2026-03-04 20:32:19 +00:00
c8214a4804 Update src/app/layout.tsx 2026-03-04 20:32:18 +00:00
4aa8e9941a Merge version_1 into main
Merge version_1 into main
2026-03-04 20:30:07 +00:00
fa513d768a Merge version_1 into main
Merge version_1 into main
2026-03-04 20:28:47 +00:00
2 changed files with 20 additions and 68 deletions

View File

@@ -1,75 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import { Geist, Geist_Mono } 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 geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Clean Tech - Professional Business Website Builder",
description: "Transform your business with custom web design and development. Clean Tech builds stunning, high-performance websites that drive growth and convert visitors.",
keywords: "web design, web development, business website, custom website builder, digital solutions",
metadataBase: new URL("https://cleantech.com"),
alternates: {
canonical: "https://cleantech.com",
},
openGraph: {
title: "Clean Tech - Professional Business Website Builder",
description: "Transform your business with custom web design and development services.",
siteName: "Clean Tech",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUnO7hTAR4DUTZL30lOgUKcOJI/a-modern-software-dashboard-interface-sh-1772656046259-dd77da7a.png",
alt: "Clean Tech website builder interface",
},
],
},
twitter: {
card: "summary_large_image",
title: "Clean Tech - Professional Business Website Builder",
description: "Transform your business with custom web design and development.",
images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUnO7hTAR4DUTZL30lOgUKcOJI/a-modern-software-dashboard-interface-sh-1772656046259-dd77da7a.png",
],
},
robots: {
index: true,
follow: true,
},
};
title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1437,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -188,17 +188,17 @@ export default function HomePage() {
faqsAnimation="slide-up"
faqs={[
{
id: "1", title: "How long does a typical website project take?", content: "Project timelines vary based on complexity and scope. A standard business website typically takes 6-12 weeks from discovery to launch. More complex applications may take 3-6 months. We'll provide a detailed timeline during your initial consultation."},
id: "1", title: "What is your process for web development?", content: "Our process includes: Discovery & Strategy, Design & Prototyping, Development & Testing, Launch & Optimization, and Ongoing Support. We maintain clear communication throughout and involve you at each stage."},
{
id: "2", title: "What is your process for web development?", content: "Our process includes: Discovery & Strategy, Design & Prototyping, Development & Testing, Launch & Optimization, and Ongoing Support. We maintain clear communication throughout and involve you at each stage."},
id: "2", title: "How much does a website cost?", content: "Pricing depends on your project's scope and requirements. Simple websites start around $5K, while complex applications can range from $20K-$100K+. We provide custom quotes after understanding your needs."},
{
id: "3", title: "Do you provide ongoing maintenance and support?", content: "Yes! We offer comprehensive support packages including security updates, performance monitoring, content updates, and technical support. Most of our clients are on long-term maintenance plans."},
id: "3", title: "How long does a typical website project take?", content: "Project timelines vary based on complexity and scope. A standard business website typically takes 6-12 weeks from discovery to launch. More complex applications may take 3-6 months. We'll provide a detailed timeline during your initial consultation."},
{
id: "4", title: "What technologies do you work with?", content: "We specialize in modern web technologies including React, Next.js, Node.js, TypeScript, and more. We choose the right tech stack based on your specific needs and business goals."},
id: "4", title: "Do you provide ongoing maintenance and support?", content: "Yes! We offer comprehensive support packages including security updates, performance monitoring, content updates, and technical support. Most of our clients are on long-term maintenance plans."},
{
id: "5", title: "Can you help with SEO?", content: "Absolutely! SEO is built into our development process. We follow best practices for site speed, mobile optimization, structured data, and content optimization to ensure your website ranks well in search engines."},
id: "5", title: "What technologies do you work with?", content: "We specialize in modern web technologies including React, Next.js, Node.js, TypeScript, and more. We choose the right tech stack based on your specific needs and business goals."},
{
id: "6", title: "How much does a website cost?", content: "Pricing depends on your project's scope and requirements. Simple websites start around $5K, while complex applications can range from $20K-$100K+. We provide custom quotes after understanding your needs."},
id: "6", title: "Can you help with SEO?", content: "Absolutely! SEO is built into our development process. We follow best practices for site speed, mobile optimization, structured data, and content optimization to ensure your website ranks well in search engines."},
]}
/>
</div>
@@ -225,4 +225,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}