Update src/app/recipe/page.tsx
This commit is contained in:
@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||
|
||||
@@ -26,20 +26,14 @@ export default function RecipePage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[{ name: "Home", id: "/" }, { name: "Recipes", id: "/recipes" }]}
|
||||
brandName="TradeStream"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="recipe-details" data-section="recipe-details">
|
||||
<SplitAbout
|
||||
<TextSplitAbout
|
||||
title="Gourmet Recipe Name"
|
||||
description="A brief but delightful introduction to this culinary masterpiece. Fresh ingredients meet expert techniques for the perfect home-cooked meal."
|
||||
bulletPoints={[
|
||||
{ title: "Prep Time", description: "15 mins" },
|
||||
{ title: "Cook Time", description: "30 mins" },
|
||||
{ title: "Servings", description: "4 people" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/gourmet-meal-presentation_23-2149187313.jpg"
|
||||
description={["A brief but delightful introduction to this culinary masterpiece.", "Fresh ingredients meet expert techniques for the perfect home-cooked meal."]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -48,10 +42,11 @@ export default function RecipePage() {
|
||||
textboxLayout="default"
|
||||
title="Ingredients"
|
||||
description="Everything you need for this recipe:"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ title: "Fresh Herbs", description: "Hand-picked basil and thyme" },
|
||||
{ title: "Organic Vegetables", description: "Seasonal local produce" },
|
||||
{ title: "Quality Proteins", description: "Locally sourced and sustainable" }
|
||||
{ title: "Fresh Herbs", description: "Hand-picked basil and thyme", imageSrc: "http://img.b2bpic.net/free-photo/gourmet-meal-presentation_23-2149187313.jpg" },
|
||||
{ title: "Organic Vegetables", description: "Seasonal local produce", imageSrc: "http://img.b2bpic.net/free-photo/gourmet-meal-presentation_23-2149187313.jpg" },
|
||||
{ title: "Quality Proteins", description: "Locally sourced and sustainable", imageSrc: "http://img.b2bpic.net/free-photo/gourmet-meal-presentation_23-2149187313.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -63,6 +58,7 @@ export default function RecipePage() {
|
||||
showRating={true}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "r1", name: "Jane Doe", handle: "@chefjane", testimonial: "Absolutely divine, made this twice already!", rating: 5 },
|
||||
{ id: "r2", name: "John Smith", handle: "@cookjohn", testimonial: "Great instructions, very easy to follow.", rating: 4 }
|
||||
@@ -72,7 +68,7 @@ export default function RecipePage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/gradient-dark-blue-futuristic-digital-grid-background_53876-129728.jpg"
|
||||
videoSrc="http://img.b2bpic.net/free-photo/gradient-dark-blue-futuristic-digital-grid-background_53876-129728.jpg"
|
||||
logoText="TradeStream"
|
||||
columns={[]}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user