Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 022a95707c | |||
| 21ae3a0058 | |||
| 293de0f547 | |||
| c855bb21a5 | |||
| c94dfdb7e2 | |||
| d045c67206 | |||
| 8880a581cf |
@@ -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,16 +1,69 @@
|
|||||||
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", description: "Custom metal building construction across West Texas"};
|
title: "AR Metal Buildings - Custom Metal Building Construction 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">
|
<html lang="en" suppressHydrationWarning>
|
||||||
<body>{children}
|
<ServiceWrapper>
|
||||||
|
<body
|
||||||
|
className={`${dmSans.variable} ${inter.variable} antialiased`}
|
||||||
|
>
|
||||||
|
<Tag />
|
||||||
|
{children}
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1378,6 +1431,7 @@ 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 HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard';
|
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||||
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, House, MessageSquareText, Settings, CircleDollarSign, ArrowLeftRight, Send } from 'lucide-react';
|
import { Hammer, Building2, Phone } from 'lucide-react';
|
||||||
import Link from 'next/link';
|
import Link from 'next/link';
|
||||||
|
|
||||||
export default function HomePage() {
|
export default function HomePage() {
|
||||||
@@ -71,58 +71,15 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardDashboard
|
<HeroBillboard
|
||||||
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" }}
|
||||||
tag="Construction Excellence"
|
|
||||||
tagIcon={Hammer}
|
|
||||||
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>
|
||||||
|
|
||||||
@@ -157,7 +114,7 @@ export default function HomePage() {
|
|||||||
title: "Ranch & Agricultural Buildings", description: "Specialized metal structures designed for ranching operations, including barns, equipment storage, and lean-to additions that withstand Texas weather.", imageSrc: "http://img.b2bpic.net/free-photo/wooden-cottage-deserted-landscape-sunny-day_181624-50468.jpg?_wi=1"},
|
title: "Ranch & Agricultural Buildings", description: "Specialized metal structures designed for ranching operations, including barns, equipment storage, and lean-to additions that withstand Texas weather.", imageSrc: "http://img.b2bpic.net/free-photo/wooden-cottage-deserted-landscape-sunny-day_181624-50468.jpg?_wi=1"},
|
||||||
{
|
{
|
||||||
id: 4,
|
id: 4,
|
||||||
title: "Large Equipment & Storage", description: "Spacious metal buildings perfect for storing equipment, vehicles, and materials with clear-span designs for maximum usable space.", imageSrc: "http://img.b2bpic.net/free-photo/many-metal-kegs-beer_1398-2538.jpg?_wi=1"},
|
title: "Large Equipment & Storage", description: "Spacious metal buildings perfect for storing equipment, vehicles, and materials with clear-span designs for maximum usable space.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcRKV9xxKoAEJ99hcHIONjOO9N/uploaded-1772895698534-dfga8cx3.jpg"},
|
||||||
]}
|
]}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -265,4 +222,4 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user