17 lines
449 B
TypeScript
17 lines
449 B
TypeScript
import React from "react";
|
|
import Navbar from "@/components/Home/Navbar";
|
|
import Footer from "@/components/Home/Footer";
|
|
import HeroSecond from "@/components/Pengumuman/HeroSecond";
|
|
import CardUndangan from "@/components/Pengumuman/CardUndangan";
|
|
|
|
export default function Undangan() {
|
|
return (
|
|
<>
|
|
<Navbar />
|
|
<HeroSecond title="Undangan" />
|
|
<CardUndangan />
|
|
<Footer />
|
|
</>
|
|
);
|
|
}
|