-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
landing page attached to the dashboard
- Loading branch information
Showing
22 changed files
with
632 additions
and
393 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export default { | ||
plugins: { | ||
tailwindcss: {}, | ||
autoprefixer: {}, | ||
}, | ||
}; | ||
plugins: { | ||
tailwindcss: {}, | ||
autoprefixer: {}, | ||
}, | ||
}; |
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import React from 'react'; | ||
|
||
interface CardDisplayProps { | ||
icon: React.ReactNode; | ||
title: string; | ||
description: string; | ||
iconColor: string; | ||
} | ||
|
||
const CardDisplay: React.FC<CardDisplayProps> = ({ | ||
icon, | ||
title, | ||
description, | ||
iconColor, | ||
}) => { | ||
return ( | ||
<div className="w-[400px] bg-white text-gray-800 p-8 rounded-lg shadow-lg transform hover:scale-105 transition-transform duration-300 dark:bg-gray-800 dark:text-gray-200 h-[300px] flex flex-col justify-between"> | ||
<div className={`text-4xl mb-4 ${iconColor}`}>{icon}</div> | ||
<h3 className="text-2xl font-semibold mb-4">{title}</h3> | ||
<p className="flex-grow">{description}</p> | ||
</div> | ||
); | ||
}; | ||
|
||
export default CardDisplay; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import React from 'react'; | ||
|
||
interface SectionHeaderProps { | ||
title: string; | ||
description: string; | ||
} | ||
|
||
const SectionHeader: React.FC<SectionHeaderProps> = ({ | ||
title, | ||
description, | ||
}) => { | ||
return ( | ||
<div className="text-center mb-12"> | ||
<h2 className="text-3xl sm:text-4xl font-bold text-center mb-5 sm:mb-5 dark:text-white"> | ||
{title} | ||
</h2> | ||
<p className="text-lg max-w-3xl mx-auto dark:text-white">{description}</p> | ||
</div> | ||
); | ||
}; | ||
|
||
export default SectionHeader; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.