2024-01-02 23:04:17 +01:00
|
|
|
import About from "./About";
|
2025-05-05 20:12:43 +02:00
|
|
|
import Footer from "../components/Footer";
|
2024-01-02 23:04:17 +01:00
|
|
|
import Experiance from "./Experience";
|
|
|
|
|
import Start from "./Start";
|
|
|
|
|
|
|
|
|
|
function FullPage() {
|
|
|
|
|
return (
|
2025-05-05 20:12:43 +02:00
|
|
|
<div className="container mx-auto px-10 max-w-6xl">
|
2024-01-02 23:04:17 +01:00
|
|
|
<Start />
|
|
|
|
|
<About />
|
|
|
|
|
<Experiance />
|
2025-05-05 20:12:43 +02:00
|
|
|
<Footer />
|
2024-01-02 23:04:17 +01:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default FullPage;
|