tosanoob's picture
Feature: add authentication, feeds and menu page
fab48db
raw
history blame
829 Bytes
// 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;