Update src/app/gallery/page.tsx
This commit is contained in:
@@ -25,26 +25,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="SK Fitness Club"
|
||||
/>
|
||||
@@ -59,18 +44,8 @@ export default function LandingPage() {
|
||||
title="Our Facility Gallery"
|
||||
description="A glimpse into our world-class gym."
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Main Floor",
|
||||
price: "Gym Floor",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dumbbells-gym_93675-129247.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Weight Area",
|
||||
price: "Strength Zone",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-dumbbells-gym_268835-3895.jpg",
|
||||
},
|
||||
{ id: "p1", name: "Main Floor", price: "Gym Floor", imageSrc: "http://img.b2bpic.net/free-photo/dumbbells-gym_93675-129247.jpg" },
|
||||
{ id: "p2", name: "Weight Area", price: "Strength Zone", imageSrc: "http://img.b2bpic.net/free-photo/black-dumbbells-gym_268835-3895.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -81,30 +56,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Trusted by Leaders"
|
||||
description="Gyms across the city look up to our standards."
|
||||
names={[
|
||||
"Fitness Global",
|
||||
"Wellness Hub",
|
||||
"Iron Power Co",
|
||||
]}
|
||||
names={["Fitness Global", "Wellness Hub", "Iron Power Co"]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={[{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }]}
|
||||
logoText="SK Fitness Club"
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user