diff --git a/src/app/feedback/page.tsx b/src/app/feedback/page.tsx new file mode 100644 index 0000000..9c2c554 --- /dev/null +++ b/src/app/feedback/page.tsx @@ -0,0 +1,94 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; + +export default function FeedbackPage() { + const commonNavItems = [ + { name: "Beranda", id: "/" }, + { name: "Tentang", id: "/#tentang" }, + { name: "Layanan", id: "/#layanan" }, + { name: "Statistik", id: "/#statistik" }, + { name: "Mitra", id: "/#mitra" }, + { name: "FAQ", id: "/#faq" }, + { name: "Kontak", id: "/#kontak" }, + { name: "Feedback", id: "/feedback" } + ]; + + return ( + + + + +
+ +
+ + +
+
+ ); +}