update
This commit is contained in:
parent
b46b2b0ee2
commit
955e1e488b
|
|
@ -31,14 +31,11 @@ export default function FormReport() {
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleSubmit = () => {
|
const handleSubmit = () => {
|
||||||
// Lakukan apa pun yang diperlukan dengan data formulir
|
|
||||||
console.log('Data formulir yang dikirim:', formData);
|
console.log('Data formulir yang dikirim:', formData);
|
||||||
console.log('Tanggal yang dipilih:', formData.date);
|
|
||||||
// Contoh: Kirim data ke server atau lakukan tindakan lainnya
|
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className='mx-20'>
|
<div className='mx-2 md:mx-24'>
|
||||||
<div className='text-[#1A328E] font-bold text-center'>
|
<div className='text-[#1A328E] font-bold text-center'>
|
||||||
<p className='text-3xl pt-3'>Lapor Pelanggan Pemilu</p>
|
<p className='text-3xl pt-3'>Lapor Pelanggan Pemilu</p>
|
||||||
<p className='text-sm pt-5'>Portal Laporan Pengaduan Online Pelanggaran Pemilu</p>
|
<p className='text-sm pt-5'>Portal Laporan Pengaduan Online Pelanggaran Pemilu</p>
|
||||||
|
|
|
||||||
|
|
@ -90,7 +90,7 @@ export default function Headline() {
|
||||||
<SwiperSlide key={item.title}>
|
<SwiperSlide key={item.title}>
|
||||||
<div className="flex flex-col relative overflow-hidden cursor-pointer rounded-lg ">
|
<div className="flex flex-col relative overflow-hidden cursor-pointer rounded-lg ">
|
||||||
<Card>
|
<Card>
|
||||||
<CardBody className="overflow-visible items-center">
|
<CardBody className="items-center">
|
||||||
<Image
|
<Image
|
||||||
shadow="sm"
|
shadow="sm"
|
||||||
radius="lg"
|
radius="lg"
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ import React from 'react'
|
||||||
|
|
||||||
export default function DetailCampaign() {
|
export default function DetailCampaign() {
|
||||||
return (
|
return (
|
||||||
<div className='flex mx-auto md:mx-20 pt-8'>
|
<div className='flex mx-2 md:mx-20 pt-8 pb-16'>
|
||||||
<div className='w-full md:w-9/12 '>
|
<div className='w-full md:w-9/12 '>
|
||||||
<div className='w-full'>
|
<div className='w-full'>
|
||||||
<img
|
<img
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@ export default function SimilarNews() {
|
||||||
|
|
||||||
];
|
];
|
||||||
return (
|
return (
|
||||||
<div className='border-2'>
|
<div className='border-2 border-red py-10'>
|
||||||
<p className='text-center pb-10 text-3xl font-bold text-[#FF3900]'>Berita Serupa</p>
|
<p className='text-center pb-10 text-3xl font-bold text-[#FF3900]'>Berita Serupa</p>
|
||||||
<div className="gap-2 grid grid-cols-2 sm:grid-cols-5 mx-auto md:mx-10">
|
<div className="gap-2 grid grid-cols-2 sm:grid-cols-5 mx-auto md:mx-10">
|
||||||
{headlineData.map((item, index) => (
|
{headlineData.map((item, index) => (
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue