- Initial setup and all features from develop branch - Includes: auth, deploy, docker, style fixes - K3S deployment configuration
18 lines
437 B
TypeScript
18 lines
437 B
TypeScript
import Hero from "@/components/landing/Hero";
|
|
import Intro from "@/components/landing/Intro";
|
|
import NewsAndGallery from "@/components/landing/NewsAndGallery";
|
|
import Contact from "@/components/landing/Contact";
|
|
import Welcome from "@/components/landing/Welcome";
|
|
|
|
export default function JaejadlePage() {
|
|
|
|
return (
|
|
<div>
|
|
<Hero />
|
|
<Intro />
|
|
<Welcome />
|
|
<NewsAndGallery />
|
|
<Contact />
|
|
</div>
|
|
);
|
|
} |