Shop integration

This commit is contained in:
2026-01-14 17:47:58 +01:00
parent be7f7b7bf7
commit 21b78f8d17
52 changed files with 5288 additions and 198 deletions

View File

@@ -7,6 +7,8 @@ import QuoteSection from '../components/QuoteSection';
import JournalSection from '../components/JournalSection';
import GallerySection from '../components/GallerySection';
import FAQ from '../components/FAQ';
const Home: React.FC = () => {
return (
<main>
@@ -14,9 +16,10 @@ const Home: React.FC = () => {
<FeatureSection />
<HorizontalScrollSection />
<Collections />
<QuoteSection />
<JournalSection />
<GallerySection />
<JournalSection />
<QuoteSection />
<FAQ />
</main>
);
};