"use client"; import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree"; import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven"; import ContactText from "@/components/sections/contact/ContactText"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; import { Layers, Info } from "lucide-react"; export default function MaterialsPage() { const navItems = [ { name: "Home", id: "/" }, { name: "Materials", id: "/materials" }, { name: "Gallery", id: "/gallery" }, { name: "About", id: "/about" }, { name: "Reviews", id: "/testimonials" }, ]; const footerColumns = [ { items: [ { label: "Home", href: "/" }, { label: "Materials", href: "/materials" }, { label: "Gallery", href: "/gallery" }, ], }, { items: [ { label: "About Us", href: "/about" }, { label: "Visit Showroom", href: "/showroom" }, { label: "Contact", href: "/contact" }, ], }, { items: [ { label: "Call: 01772 440888", href: "tel:01772440888" }, { label: "Email: info@granitehouse.co.uk", href: "mailto:info@granitehouse.co.uk" }, { label: "Strand Rd, Preston PR1 8XL", href: "https://maps.google.com/?q=Granite+House+Strand+Rd+Preston" }, ], }, { items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms & Conditions", href: "#" }, { label: "Cookie Policy", href: "#" }, ], }, ]; return (
); }