19 lines
536 B
TypeScript
19 lines
536 B
TypeScript
import React from "react";
|
|
import Navbar from "@/components/Partials/Navbar";
|
|
import Footer from "@/components/Partials/Footer";
|
|
import HeroSecond from "@/components/Card/HeroSecond";
|
|
import CardPengumuman from "@/components/Card/CardPengumuman";
|
|
import { Head } from "@inertiajs/react";
|
|
|
|
export default function Pengumuman() {
|
|
return (
|
|
<>
|
|
<Head title="Pengumuman" />
|
|
<Navbar />
|
|
<HeroSecond title="Pengumuman" />
|
|
<CardPengumuman />
|
|
<Footer />
|
|
</>
|
|
);
|
|
}
|