Spaces:
Sleeping
Sleeping
File size: 501 Bytes
fab48db |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
// 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;
|