// 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 (





) }>
); }; export default HomePage;