Merge version_4 into main #4

Merged
bender merged 2 commits from version_4 into main 2026-06-09 08:05:43 +00:00
2 changed files with 6 additions and 12 deletions

View File

@@ -1,5 +1,5 @@
"use client";
import { ThemeProvider } from "@/app/theme-provider";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import HeroBillboardDashboard from "@/components/sections/hero/HeroBillboardDashboard";
import FeatureBento from "@/components/sections/feature/FeatureBento";
@@ -73,9 +73,7 @@ export default function DashboardTrackerPage() {
title: "Upcoming Interviews", description: "A detailed view of your interview schedule.", bentoComponent: "timeline", heading: "Interview Stages", subheading: "Next Steps in Your Application Process", items: [
{ label: "Application Submitted", detail: "March 1, 2024" },
{ label: "Screening Call", detail: "March 5, 2024 - Completed" },
{ label: "Technical Interview", detail: "March 12, 2024 - Scheduled" },
{ label: "Hiring Manager Interview", detail: "March 20, 2024 - Pending" },
{ label: "Final Round", detail: "TBD" }
{ label: "Technical Interview", detail: "March 12, 2024 - Scheduled" }
],
completedLabel: "Completed"
}

View File

@@ -1,8 +1,8 @@
"use client";
import { ThemeProvider } from "next-themes";
import { NavbarStyleCentered } from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import { HeroBillboardRotatedCarousel } from "@/components/sections/hero/HeroBillboardRotatedCarousel";
import { FooterBase } from "@/components/sections/footer/FooterBase";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Sparkles } from "lucide-react";
import { useEffect, useState } from "react";
@@ -24,10 +24,6 @@ export default function Home() {
return (
<ThemeProvider
attribute="class"
defaultTheme="light"
enableSystem
disableTransitionOnChange
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"