Files
pacs-landing/index.html
asif 38764f2ed1 Initial commit: Complete PACS landing page
- Implemented React + Vite + Tailwind CSS setup
- Created responsive landing page for Palhara SKUS Primary Agriculture Credit Society
- Added hero carousel with 4 slides showcasing schemes
- Built services section with 6 service cards
- Implemented interactive revenue charts with dummy data
- Added FAQ section with accordion functionality
- Created complaint form UI
- Built comprehensive footer with links and contacts
- Configured custom theme colors (green, yellow, orange)
- Added Framer Motion animations throughout
- Implemented fully responsive design for mobile, tablet, and desktop
2025-11-26 12:01:39 +05:30

17 lines
740 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap" rel="stylesheet">
<title>Palhara SKUS - Primary Agriculture Credit Society</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>