Initial commit of project structure

This commit is contained in:
Timo Knuth
2026-01-13 08:13:48 +01:00
commit be7f7b7bf7
47 changed files with 4455 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
import React from 'react';
import Hero from '../components/Hero';
import FeatureSection from '../components/FeatureSection';
import HorizontalScrollSection from '../components/HorizontalScrollSection';
import Collections from '../components/Collections';
import QuoteSection from '../components/QuoteSection';
import JournalSection from '../components/JournalSection';
import GallerySection from '../components/GallerySection';
const Home: React.FC = () => {
return (
<main>
<Hero />
<FeatureSection />
<HorizontalScrollSection />
<Collections />
<QuoteSection />
<JournalSection />
<GallerySection />
</main>
);
};
export default Home;