diff --git a/frontend/src/app/components/icons/link.jsx b/frontend/src/app/components/icons/link.jsx new file mode 100644 index 0000000..8adcc73 --- /dev/null +++ b/frontend/src/app/components/icons/link.jsx @@ -0,0 +1,37 @@ +import React from "react"; + +const Link = ({ color = "#969AF9", width = "24", height = "24" }) => { + return ( + + ); +}; + +export default Link; diff --git a/frontend/src/app/components/icons/sun.jsx b/frontend/src/app/components/icons/sun.jsx new file mode 100644 index 0000000..2cbc03a --- /dev/null +++ b/frontend/src/app/components/icons/sun.jsx @@ -0,0 +1,30 @@ +import React from "react"; + +const sun = () => { + return ( + + ); +}; + +export default sun; diff --git a/frontend/src/app/components/navbar/styles.module.css b/frontend/src/app/components/navbar/styles.module.css index 3554845..968af4b 100644 --- a/frontend/src/app/components/navbar/styles.module.css +++ b/frontend/src/app/components/navbar/styles.module.css @@ -24,7 +24,9 @@ height: 61px; align-items: center; gap: 10px; + padding-right: 10px; flex-shrink: 0; + align-self: stretch; } .mainContainer { diff --git a/frontend/src/app/home/page.jsx b/frontend/src/app/home/page.jsx index bc6fd2c..a45467b 100644 --- a/frontend/src/app/home/page.jsx +++ b/frontend/src/app/home/page.jsx @@ -1,7 +1,13 @@ +"use client"; + import React from "react"; import userDashboardStyle from "./styles.module.css"; - +import LinkIcon from "../components/icons/link"; +import SunIcon from "../components/icons/sun"; +import Link from "next/link"; +import useIsMobile from "../hooks/useIsMobile"; const HomePage = () => { + const isMobile = useIsMobile(); return ( // Main
Friday, Feb 23 rd @@ -48,7 +33,7 @@ const HomePage = () => {
- Connected to https://isaac.dev.onecoopbank.com -
+Connected to
+