25 lines
771 B
TypeScript
25 lines
771 B
TypeScript
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;
|