Merge version_1 into main #2

Merged
bender merged 5 commits from version_1 into main 2026-04-06 06:29:45 +00:00
5 changed files with 73 additions and 379 deletions

View File

@@ -7,7 +7,7 @@ import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaA
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -25,24 +25,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Products",
id: "/products",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Anchor Fence Wholesale"
button={{ text: "Get Quote", href: "/contact" }}
/>
</div>
@@ -51,14 +40,8 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Building Security Since 1995"
description={[
"Anchor Fence Wholesale has provided professional contractors with high-quality fencing materials for decades. Our commitment to durability and supply chain efficiency makes us the preferred partner for large-scale commercial and residential projects.",
]}
buttons={[
{
text: "Learn Our Story",
href: "/about",
},
]}
"Anchor Fence Wholesale has provided professional contractors with high-quality fencing materials for decades. Our commitment to durability and supply chain efficiency makes us the preferred partner for large-scale commercial and residential projects."]}
buttons={[{ text: "Learn Our Story", href: "/about" }]}
/>
</div>
@@ -67,18 +50,12 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Our Legacy"
description="Building the nation's security through durable supply chains."
imageSrc="http://img.b2bpic.net/free-photo/brick-piles-placed-factory-floor_1150-15099.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/brick-piles-placed-factory-floor_1150-15099.jpg"
mediaAnimation="slide-up"
metricsAnimation="slide-up"
metrics={[
{
value: "1995",
title: "Founded",
},
{
value: "50+",
title: "Regional hubs",
},
{ value: "1995", title: "Founded" },
{ value: "50+", title: "Regional hubs" },
]}
/>
</div>
@@ -88,30 +65,10 @@ export default function LandingPage() {
logoText="Anchor Fence Wholesale"
columns={[
{
title: "Resources",
items: [
{
label: "Products",
href: "/products",
},
{
label: "About Us",
href: "/about",
},
],
title: "Resources", items: [{ label: "Products", href: "/products" }, { label: "About Us", href: "/about" }],
},
{
title: "Support",
items: [
{
label: "Contact",
href: "/contact",
},
{
label: "FAQ",
href: "#",
},
],
title: "Support", items: [{ label: "Contact", href: "/contact" }, { label: "FAQ", href: "#" }],
},
]}
copyrightText="© 2024 Anchor Fence Wholesale Corp. All rights reserved."

View File

@@ -7,7 +7,7 @@ import ContactText from '@/components/sections/contact/ContactText';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -25,58 +25,33 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Products",
id: "/products",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Anchor Fence Wholesale"
button={{ text: "Get Quote", href: "/contact" }}
/>
</div>
<div id="contact-section" data-section="contact-section">
<ContactText
useInvertedBackground={false}
background={{
variant: "animated-grid",
}}
background={{ variant: "animated-grid" }}
text="Ready to stock your next project? Contact our sales team for bulk pricing and logistics support."
buttons={[
{
text: "Contact Sales",
href: "mailto:sales@anchorwholesale.com",
},
]}
buttons={[{ text: "Contact Sales", href: "mailto:sales@anchorwholesale.com" }]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Support"
title="Let's Build Something Great"
description="Speak with our expert consultants today."
buttons={[
{
text: "Call Support",
href: "tel:8005550199",
},
]}
buttons={[{ text: "Call Support", href: "tel:8005550199" }]}
/>
</div>
@@ -85,30 +60,10 @@ export default function LandingPage() {
logoText="Anchor Fence Wholesale"
columns={[
{
title: "Resources",
items: [
{
label: "Products",
href: "/products",
},
{
label: "About Us",
href: "/about",
},
],
title: "Resources", items: [{ label: "Products", href: "/products" }, { label: "About Us", href: "/about" }],
},
{
title: "Support",
items: [
{
label: "Contact",
href: "/contact",
},
{
label: "FAQ",
href: "#",
},
],
title: "Support", items: [{ label: "Contact", href: "/contact" }, { label: "FAQ", href: "#" }],
},
]}
copyrightText="© 2024 Anchor Fence Wholesale Corp. All rights reserved."

View File

@@ -11,8 +11,8 @@ import { Poppins } from "next/font/google";
export const metadata: Metadata = {
title: 'Anchor Fence Wholesale | Premium Bulk Fencing Supplies',
description: 'Anchor Fence Wholesale Corp. provides premium, industrial-grade fencing materials for commercial and residential contractors. Bulk pricing available.',
title: 'Anchor Fence Wholesale | Industrial Fencing Solutions',
description: 'Premium industrial-grade fencing solutions for contractors and commercial builders across the nation. Bulk quantities available.',
openGraph: {
"title": "Anchor Fence Wholesale",
"description": "Professional wholesale fencing supplies.",

View File

@@ -28,24 +28,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Products",
id: "/products",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Anchor Fence Wholesale"
button={{ text: "Get Quote", href: "/contact" }}
/>
</div>
@@ -53,37 +42,13 @@ export default function LandingPage() {
<HeroCarouselLogo
logoText="Anchor Fence Wholesale"
description="Premium industrial-grade fencing solutions for contractors and commercial builders across the nation. Bulk quantities available."
buttons={[
{
text: "View Catalog",
href: "/products",
},
]}
buttons={[{ text: "View Catalog", href: "/products" }]}
slides={[
{
imageSrc: "http://img.b2bpic.net/free-photo/warehouse-director-arranging-boxes_482257-92046.jpg?_wi=1",
imageAlt: "Wholesale fencing storage",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/warehouse-director-arranging-boxes_482257-92046.jpg?_wi=2",
imageAlt: "Industrial fence inventory",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/warehouse-director-arranging-boxes_482257-92046.jpg?_wi=3",
imageAlt: "Construction site fencing",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/warehouse-director-arranging-boxes_482257-92046.jpg?_wi=4",
imageAlt: "Galvanized steel rolls",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/warehouse-director-arranging-boxes_482257-92046.jpg?_wi=5",
imageAlt: "Commercial fencing panels",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/warehouse-director-arranging-boxes_482257-92046.jpg?_wi=6",
imageAlt: "Wholesale fencing depot",
},
{ imageSrc: "http://img.b2bpic.net/free-photo/warehouse-director-arranging-boxes_482257-92046.jpg", imageAlt: "industrial wholesale warehouse fencing" },
{ imageSrc: "http://img.b2bpic.net/free-photo/warehouse-director-arranging-boxes_482257-92046.jpg", imageAlt: "industrial wholesale warehouse fencing" },
{ imageSrc: "http://img.b2bpic.net/free-photo/warehouse-director-arranging-boxes_482257-92046.jpg", imageAlt: "industrial wholesale warehouse fencing" },
{ imageSrc: "http://img.b2bpic.net/free-photo/warehouse-director-arranging-boxes_482257-92046.jpg", imageAlt: "industrial wholesale warehouse fencing" },
{ imageSrc: "http://img.b2bpic.net/free-photo/warehouse-director-arranging-boxes_482257-92046.jpg", imageAlt: "industrial wholesale warehouse fencing" },
]}
/>
</div>
@@ -94,26 +59,10 @@ export default function LandingPage() {
title="Industry Leaders in Wholesale"
tag="Reliability"
metrics={[
{
id: "1",
value: "25+",
description: "Years of experience",
},
{
id: "2",
value: "10k+",
description: "Projects supplied",
},
{
id: "3",
value: "500+",
description: "Bulk items in stock",
},
{
id: "4",
value: "99%",
description: "Client satisfaction rate",
},
{ id: "1", value: "25+", description: "Years of experience" },
{ id: "2", value: "10k+", description: "Projects supplied" },
{ id: "3", value: "500+", description: "Bulk items in stock" },
{ id: "4", value: "99%", description: "Client satisfaction rate" },
]}
/>
</div>
@@ -127,46 +76,11 @@ export default function LandingPage() {
title="Trusted by Contractors"
description="See why industry professionals choose us for their large-scale security projects."
testimonials={[
{
id: "1",
name: "John Doe",
handle: "@johndoe",
testimonial: "Excellent quality and fast delivery.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/two-people-working-warehouse_329181-12772.jpg",
},
{
id: "2",
name: "Jane Smith",
handle: "@janesmith",
testimonial: "Best bulk pricing in the market.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-senior-engineer-solar-panels-plant-reading-documentation_482257-120499.jpg",
},
{
id: "3",
name: "Robert Brown",
handle: "@rbrown",
testimonial: "Reliable supply for every project.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/architecture-successful-meeting_23-2148480364.jpg",
},
{
id: "4",
name: "Alice Green",
handle: "@agreen",
testimonial: "Superior customer service support.",
rating: 4,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-worker-wearing-vest_23-2149366621.jpg",
},
{
id: "5",
name: "Michael White",
handle: "@mwhite",
testimonial: "Always on time and accurate.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-businessman-using-smartphone_1098-14449.jpg",
},
{ id: "1", name: "John Doe", handle: "@johndoe", testimonial: "Excellent quality and fast delivery.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/two-people-working-warehouse_329181-12772.jpg" },
{ id: "2", name: "Jane Smith", handle: "@janesmith", testimonial: "Best bulk pricing in the market.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-senior-engineer-solar-panels-plant-reading-documentation_482257-120499.jpg" },
{ id: "3", name: "Robert Brown", handle: "@rbrown", testimonial: "Reliable supply for every project.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/architecture-successful-meeting_23-2148480364.jpg" },
{ id: "4", name: "Alice Green", handle: "@agreen", testimonial: "Superior customer service support.", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-worker-wearing-vest_23-2149366621.jpg" },
{ id: "5", name: "Michael White", handle: "@mwhite", testimonial: "Always on time and accurate.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/cheerful-businessman-using-smartphone_1098-14449.jpg" },
]}
/>
</div>
@@ -178,21 +92,9 @@ export default function LandingPage() {
title="Why Choose Us"
description="We offer more than just fencing; we offer peace of mind for your construction projects."
features={[
{
title: "Bulk Supply",
description: "Ready-to-ship inventory for immediate supply.",
imageSrc: "http://img.b2bpic.net/free-photo/horizontal-shot-building-with-brown-grey-graphics-auckland-great-cool-wallpaper_181624-4264.jpg?_wi=1",
},
{
title: "Industrial Durability",
description: "Tested against extreme weather conditions.",
imageSrc: "http://img.b2bpic.net/free-photo/outdoors-abstract-shadow-daytime_23-2149080289.jpg?_wi=1",
},
{
title: "Logistics Support",
description: "Nationwide shipping directly to your site.",
imageSrc: "http://img.b2bpic.net/free-photo/landscape-shot-brown-wooden-fence-mini-forest-with-clear-blue-sky_181624-17330.jpg?_wi=1",
},
{ title: "Bulk Supply", description: "Ready-to-ship inventory for immediate supply.", imageSrc: "http://img.b2bpic.net/free-photo/horizontal-shot-building-with-brown-grey-graphics-auckland-great-cool-wallpaper_181624-4264.jpg" },
{ title: "Industrial Durability", description: "Tested against extreme weather conditions.", imageSrc: "http://img.b2bpic.net/free-photo/outdoors-abstract-shadow-daytime_23-2149080289.jpg" },
{ title: "Logistics Support", description: "Nationwide shipping directly to your site.", imageSrc: "http://img.b2bpic.net/free-photo/landscape-shot-brown-wooden-fence-mini-forest-with-clear-blue-sky_181624-17330.jpg" },
]}
/>
</div>
@@ -205,23 +107,11 @@ export default function LandingPage() {
description="Get answers to common queries about bulk procurement and fencing hardware."
mediaAnimation="slide-up"
faqsAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/brick-piles-placed-factory-floor_1150-15099.jpg?_wi=1"
imageSrc="http://img.b2bpic.net/free-photo/brick-piles-placed-factory-floor_1150-15099.jpg"
faqs={[
{
id: "1",
title: "Do you offer bulk discounts?",
content: "Yes, we provide scalable pricing for large contractors.",
},
{
id: "2",
title: "Where is the fencing manufactured?",
content: "We source from high-quality industrial manufacturers.",
},
{
id: "3",
title: "Can I pick up orders?",
content: "Pickup options are available at our regional depots.",
},
{ id: "1", title: "Do you offer bulk discounts?", content: "Yes, we provide scalable pricing for large contractors." },
{ id: "2", title: "Where is the fencing manufactured?", content: "We source from high-quality industrial manufacturers." },
{ id: "3", title: "Can I pick up orders?", content: "Pickup options are available at our regional depots." },
]}
/>
</div>
@@ -231,30 +121,10 @@ export default function LandingPage() {
logoText="Anchor Fence Wholesale"
columns={[
{
title: "Resources",
items: [
{
label: "Products",
href: "/products",
},
{
label: "About Us",
href: "/about",
},
],
title: "Resources", items: [{ label: "Products", href: "/products" }, { label: "About Us", href: "/about" }],
},
{
title: "Support",
items: [
{
label: "Contact",
href: "/contact",
},
{
label: "FAQ",
href: "#",
},
],
title: "Support", items: [{ label: "Contact", href: "/contact" }, { label: "FAQ", href: "#" }],
},
]}
copyrightText="© 2024 Anchor Fence Wholesale Corp. All rights reserved."

View File

@@ -7,7 +7,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
export default function LandingPage() {
export default function ProductsPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -25,24 +25,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Products",
id: "/products",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Anchor Fence Wholesale"
button={{ text: "Get Quote", href: "/contact" }}
/>
</div>
@@ -53,60 +42,12 @@ export default function LandingPage() {
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
products={[
{
id: "1",
brand: "Anchor",
name: "Industrial Chain Link",
price: "$89.00/roll",
rating: 5,
reviewCount: "120",
imageSrc: "http://img.b2bpic.net/free-photo/horizontal-shot-building-with-brown-grey-graphics-auckland-great-cool-wallpaper_181624-4264.jpg?_wi=2",
},
{
id: "2",
brand: "Anchor",
name: "Aluminum Privacy Panels",
price: "$145.00/pc",
rating: 5,
reviewCount: "85",
imageSrc: "http://img.b2bpic.net/free-photo/outdoors-abstract-shadow-daytime_23-2149080289.jpg?_wi=2",
},
{
id: "3",
brand: "Anchor",
name: "PVC Coated Mesh",
price: "$72.00/roll",
rating: 4,
reviewCount: "92",
imageSrc: "http://img.b2bpic.net/free-photo/landscape-shot-brown-wooden-fence-mini-forest-with-clear-blue-sky_181624-17330.jpg?_wi=2",
},
{
id: "4",
brand: "Anchor",
name: "Commercial Security Gates",
price: "$450.00/set",
rating: 5,
reviewCount: "45",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-fence-with-parking-background_23-2148242252.jpg?_wi=1",
},
{
id: "5",
brand: "Anchor",
name: "Heavy Duty Vinyl Panels",
price: "$95.00/pc",
rating: 5,
reviewCount: "110",
imageSrc: "http://img.b2bpic.net/free-photo/white-wall-with-tree-leaf-wall_74190-7307.jpg",
},
{
id: "6",
brand: "Anchor",
name: "Ornamental Steel Railing",
price: "$125.00/pc",
rating: 4,
reviewCount: "67",
imageSrc: "http://img.b2bpic.net/free-photo/traveling-man-talking-phone_23-2148383465.jpg?_wi=1",
},
{ id: "1", brand: "Anchor", name: "Industrial Chain Link", price: "$89.00/roll", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/horizontal-shot-building-with-brown-grey-graphics-auckland-great-cool-wallpaper_181624-4264.jpg" },
{ id: "2", brand: "Anchor", name: "Aluminum Privacy Panels", price: "$145.00/pc", rating: 5, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/outdoors-abstract-shadow-daytime_23-2149080289.jpg" },
{ id: "3", brand: "Anchor", name: "PVC Coated Mesh", price: "$72.00/roll", rating: 4, reviewCount: "92", imageSrc: "http://img.b2bpic.net/free-photo/landscape-shot-brown-wooden-fence-mini-forest-with-clear-blue-sky_181624-17330.jpg" },
{ id: "4", brand: "Anchor", name: "Commercial Security Gates", price: "$450.00/set", rating: 5, reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/closeup-fence-with-parking-background_23-2148242252.jpg" },
{ id: "5", brand: "Anchor", name: "Heavy Duty Vinyl Panels", price: "$95.00/pc", rating: 5, reviewCount: "110", imageSrc: "http://img.b2bpic.net/free-photo/white-wall-with-tree-leaf-wall_74190-7307.jpg" },
{ id: "6", brand: "Anchor", name: "Ornamental Steel Railing", price: "$125.00/pc", rating: 4, reviewCount: "67", imageSrc: "http://img.b2bpic.net/free-photo/traveling-man-talking-phone_23-2148383465.jpg" },
]}
title="Our Fence Solutions"
description="Explore our extensive inventory of heavy-duty, industrial-strength fencing materials."
@@ -122,18 +63,9 @@ export default function LandingPage() {
title="Special Collections"
description="Curated selection of our best-selling hardware and materials."
products={[
{
id: "a",
name: "Safety Hinge Kit",
price: "$29.00",
imageSrc: "http://img.b2bpic.net/free-photo/traveling-man-talking-phone_23-2148383465.jpg?_wi=2",
},
{
id: "b",
name: "Gate Latch Set",
price: "$15.00",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-fence-with-parking-background_23-2148242252.jpg?_wi=2",
},
{ id: "a", name: "Safety Hinge Kit", price: "$29.00", imageSrc: "http://img.b2bpic.net/free-photo/traveling-man-talking-phone_23-2148383465.jpg" },
{ id: "b", name: "Gate Latch Set", price: "$15.00", imageSrc: "http://img.b2bpic.net/free-photo/closeup-fence-with-parking-background_23-2148242252.jpg" },
{ id: "c", name: "Steel Post Caps", price: "$12.00", imageSrc: "http://img.b2bpic.net/free-photo/warehouse-director-arranging-boxes_482257-92046.jpg" },
]}
/>
</div>
@@ -143,30 +75,10 @@ export default function LandingPage() {
logoText="Anchor Fence Wholesale"
columns={[
{
title: "Resources",
items: [
{
label: "Products",
href: "/products",
},
{
label: "About Us",
href: "/about",
},
],
title: "Resources", items: [{ label: "Products", href: "/products" }, { label: "About Us", href: "/about" }],
},
{
title: "Support",
items: [
{
label: "Contact",
href: "/contact",
},
{
label: "FAQ",
href: "#",
},
],
title: "Support", items: [{ label: "Contact", href: "/contact" }, { label: "FAQ", href: "#" }],
},
]}
copyrightText="© 2024 Anchor Fence Wholesale Corp. All rights reserved."