Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
ToDoList
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
IHM-WEB
ToDoList
Commits
6b12585a
Commit
6b12585a
authored
3 months ago
by
Kevin Portable
Browse files
Options
Downloads
Patches
Plain Diff
dark mode footer
parent
2a030777
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/components/Footer.jsx
+8
-6
8 additions, 6 deletions
src/components/Footer.jsx
with
8 additions
and
6 deletions
src/components/Footer.jsx
+
8
−
6
View file @
6b12585a
...
...
@@ -12,28 +12,30 @@ const Footer = () => {
];
return
(
<
footer
className
=
"bg-white border-t border-gray-100"
>
<
footer
className
=
"bg-white
dark:bg-gray-800
border-t border-gray-100
dark:border-gray-700 transition-colors
"
>
<
div
className
=
"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-6"
>
<
div
className
=
"flex flex-col items-center space-y-4"
>
{
/* Team members */
}
<
div
className
=
"flex flex-wrap justify-center gap-2"
>
{
teamMembers
.
map
((
member
,
index
)
=>
(
<
React
.
Fragment
key
=
{
member
}
>
<
span
className
=
"text-gray-600 font-medium"
>
{
member
}
</
span
>
<
span
className
=
"text-gray-600 dark:text-gray-300 font-medium"
>
{
member
}
</
span
>
{
index
<
teamMembers
.
length
-
1
&&
(
<
span
className
=
"text-gray-400"
>
•
</
span
>
<
span
className
=
"text-gray-400
dark:text-gray-500
"
>
•
</
span
>
)
}
</
React
.
Fragment
>
))
}
</
div
>
{
/* Copyright and signature */
}
<
div
className
=
"flex items-center gap-2 text-sm text-gray-500"
>
<
div
className
=
"flex items-center gap-2 text-sm text-gray-500
dark:text-gray-400
"
>
<
span
>
©
{
currentYear
}
TaskMaster
</
span
>
<
span
className
=
"text-gray-400"
>
|
</
span
>
<
span
className
=
"text-gray-400
dark:text-gray-500
"
>
|
</
span
>
<
div
className
=
"flex items-center gap-1"
>
<
span
>
Made with
</
span
>
<
Heart
size
=
{
14
}
className
=
"text-red-500 fill-current"
/>
<
Heart
size
=
{
14
}
className
=
"text-red-500
dark:text-red-400
fill-current"
/>
<
span
>
by the team
</
span
>
</
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