Initial commit with essential code files only
This commit is contained in:
13
pages/templates/content.js
Normal file
13
pages/templates/content.js
Normal file
@@ -0,0 +1,13 @@
|
||||
import Main from "../elements/main";
|
||||
import Second from "../elements/second";
|
||||
import Third from "../elements/third";
|
||||
|
||||
export default function Content() {
|
||||
return (
|
||||
<div>
|
||||
<Main />
|
||||
<Second />
|
||||
<Third />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
7
pages/templates/footer.js
Normal file
7
pages/templates/footer.js
Normal file
@@ -0,0 +1,7 @@
|
||||
export default function Footer() {
|
||||
return (
|
||||
<div className="flex justify-center py-4">
|
||||
<p>© Wastpol 2022</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
11
pages/templates/nav.js
Normal file
11
pages/templates/nav.js
Normal file
@@ -0,0 +1,11 @@
|
||||
import Banner from "../elements/banner";
|
||||
import Links from "../elements/links";
|
||||
|
||||
export default function Nav() {
|
||||
return (
|
||||
<div className="flex justify-between px-48 py-4">
|
||||
<Banner />
|
||||
<Links />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user