You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
735 B
30 lines
735 B
import React, { useState, useEffect } from "react"; |
|
import Navbar from "../../components/Navbar"; |
|
|
|
|
|
import Page1 from "./Page1"; |
|
import Page2 from "./Page2"; |
|
import Page3 from "./Page3"; |
|
import Page4 from "./Page4"; |
|
import Page5 from "./Page5"; |
|
import Page6 from "./Page6"; |
|
import Page7 from "./Page7"; |
|
import { set } from "lodash"; |
|
|
|
export default function Home() { |
|
return ( |
|
<div |
|
className="flex flex-col bg-white relative w-full" |
|
style={{ height: "700vh" }} |
|
> |
|
<Navbar /> |
|
<Page1 page={1} /> |
|
<Page2 page={2} /> |
|
{/* <Page3 page={3} /> */} |
|
{/* <Page4 page={4} /> */} |
|
{/* <Page5 page={5} /> */} |
|
{/* <Page6 page={6} /> */} |
|
{/* <Page7 page={7} /> */} |
|
</div> |
|
); |
|
}
|
|
|