Spaces:
Sleeping
Sleeping
File size: 829 Bytes
391b583 22c310d fab48db 391b583 fab48db 22c310d fab48db 22c310d fab48db 391b583 fab48db 391b583 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
// pages/HomePage.js
// import React, { useState } from 'react';
import AboutUsSection from '../molecules/AboutUsSection';
import NewsSection from '../organisms/NewsSection';
import StoreSection from '../organisms/StoreSection';
import MenuSection from '../organisms/MenuSection';
import BasicTemplate from '../templates/BasicTemplate';
function HomePage () {
// const [isLoggedIn, setIsLoggedIn] = useState(false);
// const [user, setUser] = useState({ name: 'User' });
return (
<BasicTemplate content={
(<>
<AboutUsSection></AboutUsSection>
<br></br>
<NewsSection />
<br></br>
<StoreSection />
<br></br>
<MenuSection />
</>)
}>
</BasicTemplate>
);
};
export default HomePage;
|