Spaces:
Sleeping
Sleeping
// pages/HomePage.js | |
// import React, { useState } from 'react'; | |
import ANavbar from '../molecules/Navbar'; | |
import ContactSection from '../molecules/ContactSection'; | |
function BasicTemplate ({content}) { | |
// const [isLoggedIn, setIsLoggedIn] = useState(false); | |
// const [user, setUser] = useState({ name: 'User' }); | |
return ( | |
<> | |
<ANavbar></ANavbar> | |
{content} | |
<ContactSection></ContactSection> | |
</> | |
); | |
}; | |
export default BasicTemplate; | |