Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
manager-assistant-fe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Shreyas Prabhu
manager-assistant-fe
Commits
01807448
Commit
01807448
authored
3 weeks ago
by
Shreyas Prabhu
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/pages/Index.tsx
+0
-29
0 additions, 29 deletions
src/pages/Index.tsx
with
0 additions
and
29 deletions
src/pages/Index.tsx
deleted
100644 → 0
+
0
−
29
View file @
9432dd8a
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
>
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment