diff --git a/src/app/page.tsx b/src/app/page.tsx index e0cb153..ac7809b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,8 +11,15 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; import TextAbout from '@/components/sections/about/TextAbout'; +import { useState } from 'react'; export default function LandingPage() { + const [requests] = useState([ + { id: 'REQ-001', name: 'John Doe', status: 'Pending', date: '2025-05-15' }, + { id: 'REQ-002', name: 'Jane Smith', status: 'In Review', date: '2025-05-16' }, + { id: 'REQ-003', name: 'Bob Johnson', status: 'Completed', date: '2025-05-17' }, + ]); + return ( +
+
+

VSO Intake Requests

+
+ + + + + + + + + + + + {requests.map((req) => ( + + + + + + + + ))} + +
Request IDNameDateStatusActions
{req.id}{req.name}{req.date}{req.status} + + +
+
+
+
+
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - +
+
+
+
+
+
+
); -} +} \ No newline at end of file