summaryrefslogtreecommitdiff
path: root/src/components/Header
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Header')
-rw-r--r--src/components/Header/Header.jsx13
-rw-r--r--src/components/Header/Header.module.css20
2 files changed, 0 insertions, 33 deletions
diff --git a/src/components/Header/Header.jsx b/src/components/Header/Header.jsx
deleted file mode 100644
index d90aafe..0000000
--- a/src/components/Header/Header.jsx
+++ /dev/null
@@ -1,13 +0,0 @@
-import React from 'react'
-import styles from './Header.module.css'
-
-const Header = ({ subheading }) => {
- return (
- <header className={styles.header}>
- <h1 className={styles.header__heading}>AADHAAR</h1>
- <h3 className={styles.header__subheading}>{subheading}</h3>
- </header>
- )
-}
-
-export default Header
diff --git a/src/components/Header/Header.module.css b/src/components/Header/Header.module.css
deleted file mode 100644
index 8e6084f..0000000
--- a/src/components/Header/Header.module.css
+++ /dev/null
@@ -1,20 +0,0 @@
-@import '../../styles/GlobalVariables.css';
-
-.header {
- font-family: 'Fredoka One', cursive;
- display: flex;
- flex-direction: column;
- align-items: center;
- margin: 20px;
- padding: 20px;
-}
-
-.header__heading {
- font-size: var(--font-large);
- font-weight: 400;
-}
-
-.header__subheading {
- font-size: var(--font-medium);
- font-weight: 400;
-}