Skip to content

Projcts feature #35

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 21 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
202d29b
Add initial project setup with routing, utility functions, and UI com…
tigawanna Nov 5, 2024
c098566
Update lint script to auto-fix issues and clean up TypeScript configu…
tigawanna Nov 5, 2024
b5eebee
Update favicon, enhance viewer type, and simplify Tailwind configuration
tigawanna Nov 6, 2024
a3a4de1
Refactor date hooks, remove unused files, and implement new media que…
tigawanna Nov 6, 2024
f232bc6
Remove MainNavbar component and update Tailwind configuration with ne…
tigawanna Nov 6, 2024
98ba582
Remove daisyui-devtools from dependencies and clean up pnpm-lock.yaml
tigawanna Nov 6, 2024
6a70a75
Update favicon, modify title, enhance LandingPageNavbar, and remove u…
tigawanna Nov 6, 2024
f32a46d
Enable default view transitions in router and clean up unused styles …
tigawanna Nov 7, 2024
f1cb583
Add dashboard layout and components, integrate sidebar, and enhance r…
tigawanna Nov 7, 2024
be1664c
Refactor dashboard routes, remove unused components, and update Tailw…
tigawanna Nov 7, 2024
55b22f2
Merge pull request #9 from SpaceyaTech/basics
bridgitkanini Nov 15, 2024
4b5fba3
Rename path to remove trailing dot
bridgitkanini Nov 15, 2024
2a52f97
Merge pull request #11 from SpaceyaTech/basics
bridgitkanini Nov 15, 2024
6e550df
Added font cofiguration
bridgitkanini Nov 18, 2024
c800266
Merge pull request #24 from SpaceyaTech/basics
bridgitkanini Nov 18, 2024
a1f888e
Fix build errors
bridgitkanini Nov 18, 2024
566ad9f
Merge pull request #25 from SpaceyaTech/basics
bridgitkanini Nov 18, 2024
ad95828
tiny changes
tigawanna Nov 21, 2024
981c70e
Projects Cards Added and populated with example data
ayuboketch Nov 24, 2024
141fa8a
Tailwind Css added for consistency
ayuboketch Nov 26, 2024
95749f3
Challenge Page Populated
ayuboketch Nov 27, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"plugins": ["prettier-plugin-tailwindcss"]
}
333 changes: 333 additions & 0 deletions Syt.js

Large diffs are not rendered by default.

12 changes: 9 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,18 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="icon" type="image/png" href="/colabs.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
<title>Colabs</title>
</head>
<body>
<div id="root"></div>
<div id="app"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading