20 lines
440 B
TypeScript
20 lines
440 B
TypeScript
import "./App.css";
|
|
import Navigation from "./components/Navigation.tsx";
|
|
import Footer from "./components/Footer.tsx";
|
|
import Home from "./pages/Home.tsx";
|
|
import About from "./components/Skills.tsx";
|
|
function App() {
|
|
return (
|
|
<div className="min-h-screen flex flex-col">
|
|
<Navigation />
|
|
<main className="flex-grow">
|
|
<Home />
|
|
<About />
|
|
</main>
|
|
<Footer />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|