7 Commits

Author SHA1 Message Date
26fd1c9c68 Merge version_4 into main
Merge version_4 into main
2026-03-03 23:52:13 +00:00
9f112ef71e Update src/app/page.tsx 2026-03-03 23:52:09 +00:00
02bb6b32c1 Update src/app/layout.tsx 2026-03-03 23:52:09 +00:00
75655a52b3 Merge version_2 into main
Merge version_2 into main
2026-03-03 23:35:44 +00:00
b2e5a569a0 Update src/app/page.tsx 2026-03-03 23:35:39 +00:00
2382b74124 Update src/app/layout.tsx 2026-03-03 23:35:39 +00:00
d7dcc01ccc Merge version_1 into main
Merge version_1 into main
2026-03-03 23:27:44 +00:00
2 changed files with 13 additions and 42 deletions

View File

@@ -1,49 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } 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 inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Price's Handyman & Construction | State College, PA", description: "Expert handyman and construction services in State College, PA. Drywall installation, remodeling, deck construction, and general contracting. Free estimates, 5-star rated.", keywords: "handyman, construction, drywall, remodeling, State College PA, contractor", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Price's Handyman & Construction", description: "Professional home improvement and construction services in State College, PA", siteName: "Price's Handyman & Construction", type: "website"},
twitter: {
card: "summary_large_image", title: "Price's Handyman & Construction", description: "Expert handyman and construction services"},
};
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} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -56,6 +56,7 @@ export default function LandingPage() {
textBoxClassName="w-full"
titleClassName="text-5xl md:text-6xl font-bold text-foreground"
descriptionClassName="text-lg md:text-xl text-foreground/80"
buttonClassName="shadow-lg hover:shadow-xl transition-shadow duration-300"
/>
</div>
@@ -120,10 +121,10 @@ export default function LandingPage() {
description="Experience and reliability you can trust for all your home improvement needs"
tag="Our Advantages"
metrics={[
{ id: "1", icon: Star, title: "5.0 Rating", value: "Highly Rated" },
{ id: "2", icon: Clock, title: "Quick Response", value: "Same-Day Quotes" },
{ id: "3", icon: Hammer, title: "Expert Work", value: "Quality First" },
{ id: "4", icon: MapPin, title: "Local Service", value: "State College Area" }
{ id: "1", icon: Star, title: "5.0 Rating", value: "15+ Years" },
{ id: "2", icon: Clock, title: "Quick Response", value: "24-Hour Response" },
{ id: "3", icon: Hammer, title: "Expert Work", value: "Over 500 Projects" },
{ id: "4", icon: MapPin, title: "Local Service", value: "Tri-County Service" }
]}
animationType="slide-up"
textboxLayout="default"
@@ -213,4 +214,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}