skl/resources/js/pages/Pengumuman.tsx

17 lines
459 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 CardPengumuman from "@/components/Pengumuman/CardPengumuman";
export default function Pengumuman() {
return (
<>
<Navbar />
<HeroSecond title="Pengumuman" />
<CardPengumuman />
<Footer />
</>
);
}