Fixed chapter selection on last chapter

This commit is contained in:
2022-05-21 15:55:10 +03:00
parent 9770de6733
commit 448cb46e9e
13 changed files with 184 additions and 37 deletions

View File

@@ -3,14 +3,16 @@ import type { Component } from 'solid-js';
import Controls from './components/Controls';
import Hero from './components/Hero'
import Projects from './components/Projects/Projects'
import ContactForm from './components/ContactForm'
const App: Component = () => {
return (
<>
<div class='App'>
<Controls/>
<Hero/>
<Projects/>
</>
<ContactForm/>
</div>
);
};