Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b201cb3587 | |||
| 75ea2215c8 | |||
| 9e9383c9e5 | |||
| 81374a3e16 | |||
| f3c572acc8 | |||
| 37b3a97ca9 |
@@ -29,9 +29,9 @@ export default function ContactPage() {
|
|||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Services", id: "/services" },
|
{ name: "Services", id: "/services" },
|
||||||
{ name: "Projects", id: "/projects" },
|
{ name: "Projects", id: "projects" },
|
||||||
{ name: "About", id: "/about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Contact", id: "/contact" },
|
{ name: "Contact", id: "contact" },
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Get a Quote", href: "/contact"}}
|
text: "Get a Quote", href: "/contact"}}
|
||||||
@@ -138,4 +138,4 @@ export default function ContactPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,69 +1,16 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { DM_Sans } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const dmSans = DM_Sans({
|
|
||||||
variable: "--font-dm-sans",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "AR Metal Buildings - Custom Metal Building Construction West Texas",
|
title: "AR Metal Buildings", description: "Custom metal building construction across West Texas"};
|
||||||
description: "Expert metal building construction for shops, barns, and agricultural structures across West Texas. High-quality, competitive pricing, trusted crews. Get your free quote today!",
|
|
||||||
keywords: "metal buildings Texas, steel shop builders, custom metal buildings, barn construction, West Texas metal buildings, agricultural structures",
|
|
||||||
metadataBase: new URL("https://armetalbuildings.com"),
|
|
||||||
alternates: {
|
|
||||||
canonical: "https://armetalbuildings.com",
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "AR Metal Buildings - Custom Metal Building Construction",
|
|
||||||
description: "High-quality metal buildings built to last. Expert construction for shops, barns, and agricultural structures across West Texas.",
|
|
||||||
url: "https://armetalbuildings.com",
|
|
||||||
siteName: "AR Metal Buildings",
|
|
||||||
type: "website",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/view-stone-building-with-coarse-plaster-surface_23-2148252829.jpg",
|
|
||||||
alt: "AR Metal Buildings - Professional Metal Construction",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "AR Metal Buildings - Custom Metal Building Construction",
|
|
||||||
description: "Expert metal building construction for West Texas. Shops, barns, agricultural structures.",
|
|
||||||
images: [
|
|
||||||
"http://img.b2bpic.net/free-photo/view-stone-building-with-coarse-plaster-surface_23-2148252829.jpg",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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>{children}
|
||||||
<body
|
|
||||||
className={`${dmSans.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1431,7 +1378,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,14 +2,14 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
import HeroCentered from '@/components/sections/hero/HeroCentered';
|
import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard';
|
||||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||||
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
||||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||||
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
||||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||||
import { Hammer, Building2, Phone } from 'lucide-react';
|
import { Hammer, Building2, Phone, House, MessageSquareText, Settings, CircleDollarSign, ArrowLeftRight, Send } from 'lucide-react';
|
||||||
import Link from 'next/link';
|
import Link from 'next/link';
|
||||||
|
|
||||||
export default function HomePage() {
|
export default function HomePage() {
|
||||||
@@ -71,20 +71,58 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroCentered
|
<HeroBillboardDashboard
|
||||||
title="High-Quality Metal Buildings Built to Last"
|
title="High-Quality Metal Buildings Built to Last"
|
||||||
description="Custom Shops, Barns, and Steel Buildings Built Across West Texas"
|
description="Custom Shops, Barns, and Steel Buildings Built Across West Texas"
|
||||||
background={{ variant: "downward-rays-static" }}
|
background={{ variant: "downward-rays-static" }}
|
||||||
avatars={[
|
tag="Construction Excellence"
|
||||||
{
|
tagIcon={Hammer}
|
||||||
src: "http://img.b2bpic.net/free-photo/view-stone-building-with-coarse-plaster-surface_23-2148252829.jpg", alt: "Metal building construction"},
|
|
||||||
]}
|
|
||||||
avatarText="Trusted by ranchers, farmers, and businesses across Texas"
|
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Get a Quote", href: "contact" },
|
{ text: "Get a Quote", href: "contact" },
|
||||||
{ text: "Call Now", href: "tel:+14322662580" },
|
{ text: "Call Now", href: "tel:+14322662580" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
|
dashboard={{
|
||||||
|
title: "AR Metal Buildings Dashboard", logoIcon: Building2,
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/view-stone-building-with-coarse-plaster-surface_23-2148252829.jpg", searchPlaceholder: "Search projects...", buttons: [
|
||||||
|
{ text: "View Projects", href: "projects" },
|
||||||
|
{ text: "Get Quote", href: "contact" },
|
||||||
|
],
|
||||||
|
sidebarItems: [
|
||||||
|
{ icon: House, active: true },
|
||||||
|
{ icon: MessageSquareText },
|
||||||
|
{ icon: Settings },
|
||||||
|
],
|
||||||
|
stats: [
|
||||||
|
{
|
||||||
|
title: "Projects Completed",
|
||||||
|
values: [150, 250, 500],
|
||||||
|
description: "Metal buildings constructed"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Years of Experience",
|
||||||
|
values: [10, 12, 15],
|
||||||
|
description: "Serving West Texas"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Customer Satisfaction",
|
||||||
|
values: [95, 97, 100],
|
||||||
|
valueSuffix: "%", description: "5.0-star rating"
|
||||||
|
},
|
||||||
|
],
|
||||||
|
chartTitle: "Project Growth", chartData: [
|
||||||
|
{ value: 50 },
|
||||||
|
{ value: 75 },
|
||||||
|
{ value: 60 },
|
||||||
|
{ value: 85 },
|
||||||
|
{ value: 90 },
|
||||||
|
],
|
||||||
|
listTitle: "Recent Completions", listItems: [
|
||||||
|
{ icon: Building2, title: "50x80 Shop with Lean-To", status: "Completed" },
|
||||||
|
{ icon: CircleDollarSign, title: "80x50 Building (18' Walls)", status: "Completed" },
|
||||||
|
{ icon: Send, title: "45x125 Metal Building", status: "Completed" },
|
||||||
|
],
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -227,4 +265,4 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user