diff --git a/frontend/src/components/Footer.jsx b/frontend/src/components/Footer.jsx index db9415ca..95b7b650 100644 --- a/frontend/src/components/Footer.jsx +++ b/frontend/src/components/Footer.jsx @@ -1,5 +1,13 @@ -import { Link, useLocation } from 'react-router-dom'; -import { Github, MessageSquare, BookOpen, Heart } from 'lucide-react'; +import { Link, useLocation } from "react-router-dom"; +import { + Github, + MessageSquare, + BookOpen, + Heart, + Instagram, + Linkedin, + Twitter, +} from "lucide-react"; export default function Footer() { const location = useLocation(); @@ -8,6 +16,7 @@ export default function Footer() { } const githubBase = "https://github.com/aryandas2911/DailyForge"; + const navLinks = [ { label: "Dashboard", path: "/dashboard" }, { label: "Tasks", path: "/tasks" }, @@ -18,11 +27,8 @@ export default function Footer() { return ( ); -} \ No newline at end of file +} diff --git a/frontend/src/index.css b/frontend/src/index.css index f7b3c6b4..869aefcd 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -1,4 +1,4 @@ -@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap'); +@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap"); @import "tailwindcss"; @custom-variant dark (&:where(.dark, .dark *)); @@ -8,7 +8,7 @@ } * { - font-family: 'Outfit', sans-serif; + font-family: "Outfit", sans-serif; } :root { @@ -54,7 +54,6 @@ html.dark[data-theme-custom="true"] { html.dark, html.dark body { - background-color: var(--bg); color: var(--text-main); color-scheme: dark; @@ -134,7 +133,9 @@ html.dark body { } .hover-lift { - transition: transform 0.2s ease, box-shadow 0.2s ease; + transition: + transform 0.2s ease, + box-shadow 0.2s ease; } .hover-lift:hover { @@ -165,8 +166,8 @@ input::-webkit-credentials-type-password-toggle { background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease; - } -@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap'); +} + @import "tailwindcss"; @custom-variant dark (&:where(.dark, .dark *)); @@ -176,7 +177,7 @@ input::-webkit-credentials-type-password-toggle { } * { - font-family: 'Outfit', sans-serif; + font-family: "Outfit", sans-serif; } :root { @@ -222,7 +223,6 @@ html.dark[data-theme-custom="true"] { html.dark, html.dark body { - background-color: var(--bg); color: var(--text-main); color-scheme: dark; @@ -302,7 +302,8 @@ html.dark body { } .hover-lift { - transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), + transition: + transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease-in-out, background-color 0.3s ease-in-out; will-change: transform; @@ -339,14 +340,14 @@ input::-webkit-credentials-type-password-toggle { background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease; - } +} - footer { +footer { --text-main: #f8fafc; --text-muted: #94a3b8; --border: #334155; } -@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap'); + @import "tailwindcss"; @custom-variant dark (&:where(.dark, .dark *)); @@ -356,7 +357,7 @@ input::-webkit-credentials-type-password-toggle { } * { - font-family: 'Outfit', sans-serif; + font-family: "Outfit", sans-serif; } :root { @@ -402,7 +403,6 @@ html.dark[data-theme-custom="true"] { html.dark, html.dark body { - background-color: var(--bg); color: var(--text-main); color-scheme: dark; @@ -487,7 +487,8 @@ html { } .hover-lift { - transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), + transition: + transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease-in-out, background-color 0.3s ease-in-out; will-change: transform; @@ -524,9 +525,9 @@ input::-webkit-credentials-type-password-toggle { background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease; - } +} - footer { +footer { --text-main: #f8fafc; --text-muted: #94a3b8; --border: #334155; diff --git a/frontend/src/utils/firebase.js b/frontend/src/utils/firebase.js index 60d20299..d2513e9c 100644 --- a/frontend/src/utils/firebase.js +++ b/frontend/src/utils/firebase.js @@ -1,6 +1,8 @@ import { initializeApp } from "firebase/app"; import { getAuth, GoogleAuthProvider } from "firebase/auth"; +console.log("Firebase API Key:", import.meta.env.VITE_FIREBASE_API_KEY); + const firebaseConfig = { apiKey: import.meta.env.VITE_FIREBASE_API_KEY, authDomain: import.meta.env.VITE_FIREBASE_AUTH_DOMAIN,