Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 504eb55fe1 | |||
| 1b8d72a7ff | |||
| 5c5478f45e |
@@ -1,45 +1,27 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Poppins } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const geist = Geist({
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
});
|
|
||||||
|
|
||||||
const poppins = Poppins({
|
|
||||||
variable: "--font-poppins", subsets: ["latin"],
|
|
||||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "337 Painting & Cleaning | Professional Home Services", description: "Expert painting and cleaning services for residential and commercial properties. Professional team, quality results, transparent pricing. Get your free quote today.", keywords: "painting services, house cleaning, professional painters, interior painting, exterior painting, pressure washing, home maintenance", openGraph: {
|
title: "337 Painting & Cleaning", description: "Professional painting and cleaning services for residential and commercial properties."};
|
||||||
title: "337 Painting & Cleaning | Transform Your Home", description: "Professional painting and cleaning services with 15+ years of experience. Over 500 satisfied clients.", siteName: "337 Painting & Cleaning", type: "website"},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "337 Painting & Cleaning Services", description: "Expert home painting and cleaning solutions for residential and commercial properties."},
|
|
||||||
};
|
|
||||||
|
|
||||||
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={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
@@ -1408,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -127,6 +127,16 @@ export default function LandingPage() {
|
|||||||
description="Choose the plan that fits your needs. All quotes include detailed breakdowns with no hidden fees."
|
description="Choose the plan that fits your needs. All quotes include detailed breakdowns with no hidden fees."
|
||||||
tag="Affordable Services"
|
tag="Affordable Services"
|
||||||
plans={[
|
plans={[
|
||||||
|
{
|
||||||
|
id: "2", badge: "Most Popular", badgeIcon: Home,
|
||||||
|
price: "$1,299", subtitle: "Best overall value - Complete interior transformation", buttons: [
|
||||||
|
{ text: "Get Quote", href: "contact" },
|
||||||
|
{ text: "Learn More" },
|
||||||
|
],
|
||||||
|
features: [
|
||||||
|
"All interior rooms included", "Custom color consultation", "Furniture protection", "2-year warranty on work"
|
||||||
|
],
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "1", badge: "Single Room", badgeIcon: Palette,
|
id: "1", badge: "Single Room", badgeIcon: Palette,
|
||||||
price: "$299", subtitle: "Perfect for quick updates and touch-ups", buttons: [
|
price: "$299", subtitle: "Perfect for quick updates and touch-ups", buttons: [
|
||||||
@@ -137,16 +147,6 @@ export default function LandingPage() {
|
|||||||
"Up to 250 sq ft coverage", "Surface preparation included", "Premium paint quality", "1-year warranty on work"
|
"Up to 250 sq ft coverage", "Surface preparation included", "Premium paint quality", "1-year warranty on work"
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
|
||||||
id: "2", badge: "Whole House", badgeIcon: Home,
|
|
||||||
price: "$1,299", subtitle: "Complete interior transformation", buttons: [
|
|
||||||
{ text: "Get Quote", href: "contact" },
|
|
||||||
{ text: "Learn More" },
|
|
||||||
],
|
|
||||||
features: [
|
|
||||||
"All interior rooms included", "Custom color consultation", "Furniture protection", "2-year warranty on work"
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3", badge: "Deep Clean", badgeIcon: Sparkles,
|
id: "3", badge: "Deep Clean", badgeIcon: Sparkles,
|
||||||
price: "$599", subtitle: "Professional home cleaning service", buttons: [
|
price: "$599", subtitle: "Professional home cleaning service", buttons: [
|
||||||
|
|||||||
Reference in New Issue
Block a user