Initial commit of project structure
This commit is contained in:
24
Pottery-website/pages/Home.tsx
Normal file
24
Pottery-website/pages/Home.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user