Upload folder using huggingface_hub
Browse files
.gitattributes
CHANGED
|
@@ -47,3 +47,4 @@ client/public/favicon-512x512.png filter=lfs diff=lfs merge=lfs -text
|
|
| 47 |
client/public/fonts/SmileySans-Oblique.otf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
client/public/fonts/Lobster-Regular.ttf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
client/public/pirate-icon.png filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 47 |
client/public/fonts/SmileySans-Oblique.otf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
client/public/fonts/Lobster-Regular.ttf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
client/public/pirate-icon.png filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
client/public/background/background.jpg filter=lfs diff=lfs merge=lfs -text
|
client/public/background/background.jpg
ADDED
|
Git LFS Details
|
client/src/components/Layout.tsx
CHANGED
|
@@ -170,11 +170,11 @@ const Layout: React.FC<{ children: React.ReactNode }> = ({ children }) => {
|
|
| 170 |
};
|
| 171 |
|
| 172 |
return (
|
| 173 |
-
<div className="min-h-screen
|
| 174 |
{/* Top Bar */}
|
| 175 |
<header className="sticky top-0 z-40 bg-ui-panel/80 backdrop-blur border-b border-ui-border">
|
| 176 |
<div className="px-4 sm:px-6 lg:px-8 h-14 flex items-center justify-between">
|
| 177 |
-
<Link to="/dashboard" className="text-[1.6rem] font-bold text-ui-text flex items-center ml-
|
| 178 |
<img src="/favicon-512x512.png" alt="logo" className="h-8 w-8 mr-2" />
|
| 179 |
TransHub
|
| 180 |
</Link>
|
|
|
|
| 170 |
};
|
| 171 |
|
| 172 |
return (
|
| 173 |
+
<div className="min-h-screen text-ui-text" style={{ backgroundImage: 'url(/background/background.jpg)', backgroundSize: 'cover', backgroundPosition: 'center', backgroundRepeat: 'no-repeat' }}>
|
| 174 |
{/* Top Bar */}
|
| 175 |
<header className="sticky top-0 z-40 bg-ui-panel/80 backdrop-blur border-b border-ui-border">
|
| 176 |
<div className="px-4 sm:px-6 lg:px-8 h-14 flex items-center justify-between">
|
| 177 |
+
<Link to="/dashboard" className="text-[1.6rem] font-bold text-ui-text flex items-center -ml-4 hover:text-ui-text" style={{ fontFamily: 'Lobster, Inter, system-ui, sans-serif' }}>
|
| 178 |
<img src="/favicon-512x512.png" alt="logo" className="h-8 w-8 mr-2" />
|
| 179 |
TransHub
|
| 180 |
</Link>
|
client/src/pages/Dashboard.tsx
CHANGED
|
@@ -50,14 +50,14 @@ const Dashboard: React.FC = () => {
|
|
| 50 |
const quickActions = [
|
| 51 |
{
|
| 52 |
name: 'Tutorial Tasks',
|
| 53 |
-
description: 'Complete weekly
|
| 54 |
href: '/tutorial-tasks',
|
| 55 |
icon: AcademicCapIcon,
|
| 56 |
color: 'bg-blue-500'
|
| 57 |
},
|
| 58 |
{
|
| 59 |
name: 'Weekly Practice',
|
| 60 |
-
description: 'Practice with
|
| 61 |
href: '/weekly-practice',
|
| 62 |
icon: BookOpenIcon,
|
| 63 |
color: 'bg-green-500'
|
|
@@ -71,7 +71,7 @@ const Dashboard: React.FC = () => {
|
|
| 71 |
},
|
| 72 |
{
|
| 73 |
name: 'Toolkit',
|
| 74 |
-
description: '
|
| 75 |
href: '/toolkit',
|
| 76 |
icon: ChartBarIcon,
|
| 77 |
color: 'bg-indigo-500'
|
|
@@ -85,7 +85,7 @@ const Dashboard: React.FC = () => {
|
|
| 85 |
},
|
| 86 |
{
|
| 87 |
name: 'Feedback',
|
| 88 |
-
description: 'Send
|
| 89 |
href: '/feedback',
|
| 90 |
icon: DocumentTextIcon,
|
| 91 |
color: 'bg-rose-500'
|
|
|
|
| 50 |
const quickActions = [
|
| 51 |
{
|
| 52 |
name: 'Tutorial Tasks',
|
| 53 |
+
description: 'Complete weekly tasks',
|
| 54 |
href: '/tutorial-tasks',
|
| 55 |
icon: AcademicCapIcon,
|
| 56 |
color: 'bg-blue-500'
|
| 57 |
},
|
| 58 |
{
|
| 59 |
name: 'Weekly Practice',
|
| 60 |
+
description: 'Practice with examples',
|
| 61 |
href: '/weekly-practice',
|
| 62 |
icon: BookOpenIcon,
|
| 63 |
color: 'bg-green-500'
|
|
|
|
| 71 |
},
|
| 72 |
{
|
| 73 |
name: 'Toolkit',
|
| 74 |
+
description: 'Evaluation and reference tools',
|
| 75 |
href: '/toolkit',
|
| 76 |
icon: ChartBarIcon,
|
| 77 |
color: 'bg-indigo-500'
|
|
|
|
| 85 |
},
|
| 86 |
{
|
| 87 |
name: 'Feedback',
|
| 88 |
+
description: 'Send requests and issues',
|
| 89 |
href: '/feedback',
|
| 90 |
icon: DocumentTextIcon,
|
| 91 |
color: 'bg-rose-500'
|