updated frontend with CKA info and footer

This commit is contained in:
2025-01-01 10:27:17 +02:00
parent 731d943997
commit 0abc6ce6e5
7 changed files with 131 additions and 44 deletions

View File

@ -3,6 +3,7 @@ import './App.css'
import Navbar from './components/Navbar'
import Introduction from './components/Introduction'
import Skills from './components/Skills'
import Footer from './components/Footer'
function App() {
const [darkMode, setDarkMode] = useState(true)
@ -18,6 +19,7 @@ function App() {
<Navbar toggleDarkMode={toggleDarkMode} darkMode={darkMode}/>
<Introduction></Introduction>
<Skills></Skills>
<Footer></Footer>
</section>
</main>
</div>