Switch to version 7: modified src/app/page.tsx

This commit is contained in:
2026-04-15 13:23:38 +00:00
parent c1100a0046
commit 97d796dbb8

View File

@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
import FooterCard from '@/components/sections/footer/FooterCard';
import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit/HeroLogoBillboardSplit';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TeamCardOne from '@/components/sections/team/TeamCardOne';
@@ -40,12 +40,18 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroLogoBillboardSplit
title="Shed Coffee"
subtitle="Thessaloniki"
description="Minimal specialty coffee. Designed for the modern creative ritual."
background={{ variant: "gradient-bars" }}
imageSrc="http://img.b2bpic.net/free-photo/table-set-dinning-table_1339-3441.jpg"
<HeroSplitDualMedia
background={{ variant: "plain" }}
title="Where coffee meets culture"
description="Your daily ritual in the heart of Thessaloniki. We provide the perfect space for students and creatives to connect, study, and thrive."
tag="Specialty Coffee & Study Hub"
mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/table-set-dinning-table_1339-3441.jpg", imageAlt: "Coffee ritual atmosphere" },
{ imageSrc: "http://img.b2bpic.net/free-photo/friends-people-group-teamwork-diversity_53876-64938.jpg", imageAlt: "Social study hub" }
]}
mediaAnimation="blur-reveal"
rating={5}
ratingText="Loved by the student community"
/>
</div>
@@ -119,4 +125,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}