Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fb0a843d90 | |||
| 418ccd294a | |||
| b5ad812a02 | |||
| f1f62a034c | |||
| a2ae439e66 | |||
| 282b4d6f89 | |||
| 0d141a0881 |
@@ -29,13 +29,13 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "#hero" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "About", id: "#about" },
|
{ name: "About", id: "/#about" },
|
||||||
{ name: "Products", id: "#products" },
|
{ name: "Products", id: "/products" },
|
||||||
{ name: "Contact", id: "#contact" },
|
{ name: "Contact", id: "/#contact" },
|
||||||
]}
|
]}
|
||||||
brandName="Green Creek Woodshop"
|
brandName="Green Creek Woodshop"
|
||||||
button={{ text: "Get Started", href: "#contact" }}
|
button={{ text: "Get Started", href: "/#contact" }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -44,8 +44,8 @@ export default function LandingPage() {
|
|||||||
logoText="Timeless Woodcraft from the Heart of West Virginia"
|
logoText="Timeless Woodcraft from the Heart of West Virginia"
|
||||||
description="Handcrafted from Appalachian Hardwoods — Responsibly Harvested, Beautifully Made. Family owned for over 30 years."
|
description="Handcrafted from Appalachian Hardwoods — Responsibly Harvested, Beautifully Made. Family owned for over 30 years."
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Browse Lumber", href: "#products" },
|
{ text: "Browse Lumber", href: "/products" },
|
||||||
{ text: "Start Project", href: "#contact" },
|
{ text: "Start Project", href: "/#contact" },
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/rich-dark-wood-grain-texture_84443-73151.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/rich-dark-wood-grain-texture_84443-73151.jpg"
|
||||||
imageAlt="Appalachian forest and woodcraft"
|
imageAlt="Appalachian forest and woodcraft"
|
||||||
@@ -72,9 +72,9 @@ export default function LandingPage() {
|
|||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
products={[
|
products={[
|
||||||
{ id: "slab", name: "Live Edge Slabs", price: "Contact for Quote", imageSrc: "http://img.b2bpic.net/free-photo/photo-wall-texture-pattern_58702-12886.jpg", imageAlt: "Live edge slab" },
|
{ id: "slab", name: "Live Edge Slabs", price: "Contact for Quote", imageSrc: "http://img.b2bpic.net/free-photo/photo-wall-texture-pattern_58702-12886.jpg?_wi=1", imageAlt: "Live edge slab" },
|
||||||
{ id: "custom", name: "Custom Furniture", price: "Contact for Quote", imageSrc: "http://img.b2bpic.net/free-photo/parallel-sections-light-diagonal-minimal-kitchen_169016-69155.jpg", imageAlt: "Custom furniture" },
|
{ id: "custom", name: "Custom Furniture", price: "Contact for Quote", imageSrc: "http://img.b2bpic.net/free-photo/parallel-sections-light-diagonal-minimal-kitchen_169016-69155.jpg?_wi=1", imageAlt: "Custom furniture" },
|
||||||
{ id: "specialty", name: "Specialty Projects", price: "Contact for Quote", imageSrc: "http://img.b2bpic.net/free-photo/young-man-engraving-wood_23-2149061688.jpg", imageAlt: "Specialty project" },
|
{ id: "specialty", name: "Specialty Projects", price: "Contact for Quote", imageSrc: "http://img.b2bpic.net/free-photo/young-man-engraving-wood_23-2149061688.jpg?_wi=1", imageAlt: "Specialty project" },
|
||||||
]}
|
]}
|
||||||
title="What We Offer"
|
title="What We Offer"
|
||||||
description="Hand-picked Appalachian hardwoods, custom furniture, and heirloom quality builds."
|
description="Hand-picked Appalachian hardwoods, custom furniture, and heirloom quality builds."
|
||||||
|
|||||||
63
src/app/products/page.tsx
Normal file
63
src/app/products/page.tsx
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
|
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||||
|
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||||
|
|
||||||
|
export default function ProductsPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="text-stagger"
|
||||||
|
defaultTextAnimation="background-highlight"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="small"
|
||||||
|
sizing="mediumLargeSizeLargeTitles"
|
||||||
|
background="noiseDiagonalGradient"
|
||||||
|
cardStyle="glass-elevated"
|
||||||
|
primaryButtonStyle="primary-glow"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="medium"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarLayoutFloatingInline
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "About", id: "/#about" },
|
||||||
|
{ name: "Products", id: "/products" },
|
||||||
|
{ name: "Contact", id: "/#contact" },
|
||||||
|
]}
|
||||||
|
brandName="Green Creek Woodshop"
|
||||||
|
button={{ text: "Get Started", href: "/#contact" }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="products" data-section="products">
|
||||||
|
<ProductCardThree
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="split-description"
|
||||||
|
gridVariant="three-columns-all-equal-width"
|
||||||
|
useInvertedBackground={true}
|
||||||
|
products={[
|
||||||
|
{ id: "slab", name: "Live Edge Slabs", price: "Contact for Quote", imageSrc: "http://img.b2bpic.net/free-photo/photo-wall-texture-pattern_58702-12886.jpg?_wi=2", imageAlt: "Live edge slab" },
|
||||||
|
{ id: "custom", name: "Custom Furniture", price: "Contact for Quote", imageSrc: "http://img.b2bpic.net/free-photo/parallel-sections-light-diagonal-minimal-kitchen_169016-69155.jpg?_wi=2", imageAlt: "Custom furniture" },
|
||||||
|
{ id: "specialty", name: "Specialty Projects", price: "Contact for Quote", imageSrc: "http://img.b2bpic.net/free-photo/young-man-engraving-wood_23-2149061688.jpg?_wi=2", imageAlt: "Specialty project" },
|
||||||
|
]}
|
||||||
|
title="Our Premium Products"
|
||||||
|
description="Browse our full collection of hand-crafted Appalachian hardwood furniture and custom-milled slabs."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterLogoReveal
|
||||||
|
logoText="Green Creek Woodshop"
|
||||||
|
leftLink={{ text: "© 2024 Green Creek Woodshop", href: "#" }}
|
||||||
|
rightLink={{ text: "1577 Kettle Road, Gandeeville, WV", href: "#" }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user