Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9f112ef71e | |||
| 02bb6b32c1 | |||
| 75655a52b3 | |||
| b2e5a569a0 | |||
| 2382b74124 | |||
| d7dcc01ccc |
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user