diff --git a/src/App.css b/src/App.css index 40af8c9..7fd0764 100644 --- a/src/App.css +++ b/src/App.css @@ -35,4 +35,13 @@ .sidebar.open { transform: translateX(0); /* Show the sidebar by removing the translation */ +} + +.sidebar-open { + border: 1px solid red; +} + +.sidebar-close { + border: 1px solid green; + transform: translateX(0%); } \ No newline at end of file diff --git a/src/components/Footer/Footer.tsx b/src/components/Footer/Footer.tsx index ea9f0a4..3973536 100644 --- a/src/components/Footer/Footer.tsx +++ b/src/components/Footer/Footer.tsx @@ -1,29 +1,22 @@ -import { Link } from 'react-router-dom' - -import FBook from '../../assets/icons/facebook.svg' -import Twitter from '../../assets/icons/twitter.svg' -import Instagram from '../../assets/icons/instagram.svg' +import { Link } from "react-router-dom"; +import { socialsIcons } from "../../utils/data"; export default function Footer() { - - let socialsIcons = [ - {name: 'facebook', image: FBook}, - {name: 'twitter', image: Twitter}, - {name: 'instagram', image: Instagram}, - ] - + const date = new Date().getFullYear(); return ( -
{new Date().getFullYear()} @ First City Monument Bank Limited
-+ {date} @ First City Monument Bank Limited +
++ BASIC INFORMATION +
+Terms and conditions apply
diff --git a/src/components/index.ts b/src/components/index.ts index f8e9a54..dce8731 100644 --- a/src/components/index.ts +++ b/src/components/index.ts @@ -1,4 +1,5 @@ export * from "./Header" export * from "./Home" +export * from "./GetStarted" export * from "./shared" export * from "./Footer" \ No newline at end of file diff --git a/src/pages/GetStartedPage.tsx b/src/pages/GetStartedPage.tsx new file mode 100644 index 0000000..333e54a --- /dev/null +++ b/src/pages/GetStartedPage.tsx @@ -0,0 +1,14 @@ +import React from "react"; +import { GetStarted as Main, Header, Footer } from "../components"; + +const GetStartedPage: React.FC = () => { + return ( + <> +