blob: b132f124582688f0b1cb965dc7e02740df11cf6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
import React from 'react'
import { Link } from 'react-router-dom'
import Card from '../../components/Card/Card'
import Header from '../../components/Header/Header'
import styles from './Home.module.css'
const Home = () => {
return (
<>
<Header subheading="Mera Aadhaar Meri Pehchan" />
<div className={styles.card__container}>
<Link to="/enrollment">
<Card
title="Enrollment"
image={`${process.env.PUBLIC_URL}/assets/images/enrollment.svg`}
/>
</Link>
<Link to="/update">
<Card
title="Update"
image={`${process.env.PUBLIC_URL}/assets/images/update.svg`}
/>
</Link>
</div>
</>
)
}
export default Home
|