Skip to content
Snippets Groups Projects
Commit 01807448 authored by Shreyas Prabhu's avatar Shreyas Prabhu
Browse files

refactor: remove Index component; streamline project structure by eliminating unused files

parent 9432dd8a
No related branches found
No related tags found
No related merge requests found
import React from "react";
import GridBackgroundDemo from "@/components/ui/grid-background-demo";
export default function Index() {
return (
<div className="grid grid-cols-1 grid-rows-1 min-h-full">
{/* Grid Background Demo as base layer */}
<div className="col-start-1 row-start-1 w-full h-full">
<GridBackgroundDemo />
</div>
{/* Dashboard Content centered using grid */}
<div className="col-start-1 row-start-1 w-full h-full grid place-items-center px-6 z-10 py-8">
<div className="w-full max-w-2xl">
{/* Dashboard Header */}
<div className="text-center mb-8">
<h1 className="text-4xl font-bold bg-gradient-to-r from-blue-600 to-purple-600 bg-clip-text text-transparent mb-2">DASHBOARD</h1>
<div className="w-20 h-1 bg-blue-600 mx-auto rounded"></div>
</div>
{/* Dashboard content will go here */}
<div className="bg-white/80 backdrop-blur-sm p-8 rounded-xl shadow-lg border border-gray-100">
<p className="text-gray-600 text-center">Welcome to your project management dashboard</p>
</div>
</div>
</div>
</div>
);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment