4 Commits

Author SHA1 Message Date
1cb1175015 Merge version_2 into main
Merge version_2 into main
2026-03-10 09:36:42 +00:00
504eb55fe1 Update src/app/page.tsx 2026-03-10 09:36:38 +00:00
1b8d72a7ff Update src/app/layout.tsx 2026-03-10 09:36:37 +00:00
5c5478f45e Merge version_1 into main
Merge version_1 into main
2026-03-10 09:33:15 +00:00
2 changed files with 22 additions and 41 deletions

View File

@@ -1,46 +1,28 @@
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={{
__html: ` __html: `
@@ -1408,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -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: [