Skip to content

Commit 1dab123

Browse files
committed
fix: refactor server
1 parent 555995f commit 1dab123

File tree

8 files changed

+11
-5
lines changed

8 files changed

+11
-5
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ Backend - Flask<br>
1212
Frontend - Vite + React (typescript)<br>
1313
Database - Neo4j
1414

15+
## Features
16+
1. Create your profile
17+
2. Find peers with similar interests and skills
18+
3. chat with peers
19+
4. See others posted projects
20+
5. Get the best Roadmap for development
21+
1522
## Installation
1623

1724
See the [INSTALLATION GUIDE](INSTALLATION.md) for Installing the project locally.

client/src/pages/Landing.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { Hero } from '@/components/Hero/Hero';
77

88
const Landing: React.FC = () => {
99
return (
10-
<div className="w-full rounded-md md:items-center md:justify-center antialiased bg-grid-white/[0.02] relative overflow-hidden w-full dark:bg-black bg-white dark:bg-dot-white/[0.2] bg-dot-black/[0.2] items-center justify-center" >
10+
<div className="w-full rounded-md md:items-center md:justify-center antialiased bg-grid-white/[0.02] relative overflow-hidden w-full dark:bg-zinc-900 bg-white dark:bg-dot-white/[0.2] bg-dot-black/[0.2] items-center justify-center" >
1111
<div className="absolute pointer-events-none inset-0 flex items-center justify-center dark:bg-black bg-white [mask-image:radial-gradient(ellipse_at_center,transparent_20%,black)]"></div>
1212

1313
<Navbar />

docs/images/image.png

-13.4 KB
Binary file not shown.

server/api/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
# api/__init__.py
File renamed without changes.
File renamed without changes.
File renamed without changes.

server/api/urls.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
from api.handlers.userauth import signup, login, check_auth, home, logout, index, check_username
2-
from api.handlers.profile import get_profile, update_profile, add_project, update_project, delete_project
1+
from api.handlers.auth.userauth import signup, login, check_auth, home, logout, index, check_username
2+
from api.handlers.user.profile import get_profile, update_profile, add_project, update_project, delete_project
33
from api.handlers.analyze.githubdata import github_data, top_languages, streak_stats, pinned_repos, streak_chart
44
from api.handlers.analyze.leetcodedata import leetcode_data, leetcode_card
55
from api.handlers.query.querymodel import chat,retrieve_chat
6-
from api.handlers.friends import friends_bp
6+
from api.handlers.user.friends import friends_bp
77

88
def register_routes(app):
99
# Authentication routes

0 commit comments

Comments
 (0)