Update src/app/shop/page.tsx
This commit is contained in:
@@ -2,174 +2,26 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { Facebook, Instagram, Twitter } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ShopPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="largeSmall"
|
||||
background="noise"
|
||||
cardStyle="outline"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "ホーム",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "ショップ",
|
||||
id: "/shop",
|
||||
},
|
||||
{
|
||||
name: "観光農園",
|
||||
id: "/garden",
|
||||
},
|
||||
{
|
||||
name: "ブランド",
|
||||
id: "/brand",
|
||||
},
|
||||
]}
|
||||
brandName="ミキファーム"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
brand: "ミキファーム",
|
||||
name: "完熟生ライチ 化粧箱(大粒12粒)",
|
||||
price: "¥5,000",
|
||||
rating: 5,
|
||||
reviewCount: "120",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-berries-high-angle_23-2150062809.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
brand: "ミキファーム",
|
||||
name: "完熟生ライチ 化粧箱(大粒24粒)",
|
||||
price: "¥9,500",
|
||||
rating: 5,
|
||||
reviewCount: "85",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-arrangement-delicious-autumn-fruits_23-2148634417.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
brand: "ミキファーム",
|
||||
name: "ご家庭用 バラ詰め 600g",
|
||||
price: "¥3,500",
|
||||
rating: 4,
|
||||
reviewCount: "210",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-box-with-oranges_23-2148980212.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
brand: "ミキファーム",
|
||||
name: "完熟生ライチ プレミアム1kg",
|
||||
price: "¥7,500",
|
||||
rating: 5,
|
||||
reviewCount: "50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-bowl-with-black-spaghetti-squid_23-2148461690.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
brand: "ミキファーム",
|
||||
name: "ご家庭用 バラ詰め 1kg",
|
||||
price: "¥5,500",
|
||||
rating: 4,
|
||||
reviewCount: "150",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lychee-fruit-close-up_1150-13613.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
brand: "ミキファーム",
|
||||
name: "ライチギフトセット",
|
||||
price: "¥12,000",
|
||||
rating: 5,
|
||||
reviewCount: "40",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sweet-marshmallows-wooden-plate-with-glass-christmas-red-balls_114579-32447.jpg",
|
||||
},
|
||||
]}
|
||||
title="プレミアムギフト・ラインナップ"
|
||||
description="旬の恵みを、大切な方へ。"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="ecommerce" data-section="ecommerce">
|
||||
<ProductCatalog
|
||||
layout="page"
|
||||
products={[
|
||||
{
|
||||
id: "sc1",
|
||||
name: "完熟生ライチ 化粧箱(12粒)",
|
||||
price: "¥5,000",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-copy-space-plum-with-dogwood-sweet-cherry-stand-white-background_141793-49823.jpg",
|
||||
},
|
||||
{
|
||||
id: "sc2",
|
||||
name: "完熟生ライチ 化粧箱(24粒)",
|
||||
price: "¥9,500",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-female-hands-holding-wicker-tray-fresh-apples-with-kinkans-isolated-green-wall_141793-75812.jpg",
|
||||
},
|
||||
{
|
||||
id: "sc3",
|
||||
name: "ご家庭用 バラ詰め 600g",
|
||||
price: "¥3,500",
|
||||
rating: 4,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-dessert-with-fruits_23-2149707919.jpg",
|
||||
},
|
||||
{
|
||||
id: "sc4",
|
||||
name: "完熟生ライチ プレミアム1kg",
|
||||
price: "¥7,500",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/composition-autumn-fruits-with-copy-space_23-2148634411.jpg",
|
||||
},
|
||||
{
|
||||
id: "sc5",
|
||||
name: "完熟ライチ・ハニーギフト",
|
||||
price: "¥6,800",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-fresh-berries-tray-with-copyspace_23-2148233304.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="有限会社ミキファーム"
|
||||
leftLink={{
|
||||
text: "プライバシーポリシー",
|
||||
href: "/privacy",
|
||||
}}
|
||||
rightLink={{
|
||||
text: "特定商取引法に基づく表記",
|
||||
href: "/legal",
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<NavbarStyleCentered
|
||||
navItems={[{ name: "ホーム", id: "/" }, { name: "ショップ", id: "/shop" }, { name: "観光農園", id: "/garden" }, { name: "ブランド", id: "/brand" }, { name: "お問い合わせ", id: "/contact" }]}
|
||||
brandName="ミキファーム"
|
||||
/>
|
||||
<div className="pt-32 pb-20 px-6 max-w-7xl mx-auto">
|
||||
<h1 className="text-4xl font-bold mb-8">オンラインショップ</h1>
|
||||
<p>厳選された完熟ライチを全国へお届けいたします。</p>
|
||||
</div>
|
||||
<FaqSplitMedia faqs={[]} faqsAnimation="slide-up" title="ショップ関連の質問" textboxLayout="default" />
|
||||
<FooterCard logoText="有限会社ミキファーム" socialLinks={[{ icon: Facebook, href: "#", ariaLabel: "Facebook" }, { icon: Instagram, href: "#", ariaLabel: "Instagram" }, { icon: Twitter, href: "#", ariaLabel: "Twitter" }]} />
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user