mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2024-12-26 06:20:42 -05:00
feat: content added
This commit is contained in:
parent
e65acd8723
commit
c104a1b905
1 changed files with 4 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
|||
import { contactComponent } from "./components/contact";
|
||||
import { carousel } from "./components/carousel"
|
||||
import { menuBar as navbar } from "./components/navbar";
|
||||
import { menuComponent } from "./components/menu";
|
||||
import './style.css'
|
||||
|
||||
function nav(){
|
||||
|
@ -28,3 +30,5 @@ function content(data) {
|
|||
let carouselComponent = carousel.createComponent();
|
||||
document.body.appendChild(nav());
|
||||
document.body.appendChild(carouselComponent);
|
||||
document.body.appendChild(menuComponent());
|
||||
document.body.appendChild(contactComponent());
|
||||
|
|
Loading…
Reference in a new issue