Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d3d6315720 | |||
| 04e90d923d | |||
| 7ae988b5d0 | |||
| 92c46f45f8 | |||
| b8d2827ae1 | |||
| 58d9f91ddc | |||
| 2692d1cafd | |||
| 9d48864ab0 |
@@ -1,44 +1,23 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Mulish } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } 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 mulish = Mulish({
|
|
||||||
variable: "--font-mulish", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
const inter = Inter({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Go Green Detailing - Professional Eco-Friendly Car Detailing", description: "Expert professional car detailing services using eco-friendly products. Exterior wash, interior detailing, ceramic coating, and more. Book your appointment today.", keywords: "car detailing, auto detailing, ceramic coating, car wash, eco-friendly, professional detailing, paint protection", openGraph: {
|
title: "Go Green Detailing", description: "Professional car detailing services"};
|
||||||
title: "Go Green Detailing - Professional Car Detailing Services", description: "Expert vehicle detailing with eco-conscious practices. Premium services from exterior wash to ceramic coating.", type: "website", siteName: "Go Green Detailing", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/young-man-washing-car-carwash-station-outdoor_651396-2004.jpg", alt: "Professional car detailing service"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Go Green Detailing - Professional Car Detailing", description: "Expert detailing services with environmental responsibility. Schedule your appointment now.", images: ["http://img.b2bpic.net/free-photo/young-man-washing-car-carwash-station-outdoor_651396-2004.jpg"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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.variable}>{children}
|
||||||
<body
|
|
||||||
className={`${mulish.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1406,7 +1385,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import SplitAbout from "@/components/sections/about/SplitAbout";
|
|||||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||||
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
|
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
|
||||||
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
||||||
|
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||||
import { Wind, Shield, Sparkles, Zap, Award, CheckCircle, Star } from "lucide-react";
|
import { Wind, Shield, Sparkles, Zap, Award, CheckCircle, Star } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
@@ -179,6 +180,26 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="contact-form" data-section="contact-form">
|
||||||
|
<ContactSplitForm
|
||||||
|
title="Get in Touch"
|
||||||
|
description="Have questions about our services? Fill out the form below and our team will get back to you within 24 hours."
|
||||||
|
inputs={[
|
||||||
|
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
||||||
|
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
||||||
|
{ name: "phone", type: "tel", placeholder: "Phone Number", required: false },
|
||||||
|
{ name: "service", type: "select", placeholder: "Service Type", required: true },
|
||||||
|
]}
|
||||||
|
textarea={{ name: "message", placeholder: "Message", rows: 5, required: true }}
|
||||||
|
imageSrc="http://img.b2bpic.net/free-photo/young-man-washing-car-carwash-station-outdoor_651396-2004.jpg?_wi=7"
|
||||||
|
imageAlt="Contact us"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
buttonText="Send Message"
|
||||||
|
mediaAnimation="slide-up"
|
||||||
|
mediaPosition="right"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterMedia
|
<FooterMedia
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/young-man-washing-car-carwash-station-outdoor_651396-2004.jpg?_wi=6"
|
imageSrc="http://img.b2bpic.net/free-photo/young-man-washing-car-carwash-station-outdoor_651396-2004.jpg?_wi=6"
|
||||||
@@ -199,7 +220,7 @@ export default function LandingPage() {
|
|||||||
{ label: "About Us", href: "#features" },
|
{ label: "About Us", href: "#features" },
|
||||||
{ label: "Testimonials", href: "#testimonials" },
|
{ label: "Testimonials", href: "#testimonials" },
|
||||||
{ label: "Book Now", href: "#contact" },
|
{ label: "Book Now", href: "#contact" },
|
||||||
{ label: "Contact", href: "#contact" },
|
{ label: "Contact", href: "#contact-form" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user