lab6 done

This commit is contained in:
2026-04-13 18:06:00 +10:00
parent ed282406d5
commit b441bfde8d
12 changed files with 502 additions and 57 deletions

View File

@@ -1,12 +1,18 @@
import { useState } from 'react'
import logo from './images/logo.svg'
import NavBar from './components/Navbar.jsx'
import NavBar from './components/Navbar'
import Gallery from "./components/Gallery";
import Content from "./components/Content";
import CustomFooter from "./components/CustomFooter";
import './styles/App.css'
function App() {
return (
<>
<NavBar />
<NavBar active='2'/>
<Gallery/>
<Content/>
<CustomFooter/>
</>
)
}