Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
5a906cc
fix: file extention change for jsx to tsx
DumiduLakshan Oct 14, 2025
d12db4c
feat(header): replace the logo
noobconner21 Oct 26, 2025
3d2a715
refactor: update and change folders structure
tgsnimesh Jan 11, 2026
8806c77
Merge branch 'development' of https://github.com/HotBedLK/frontend in…
tgsnimesh Jan 11, 2026
0bb4d3c
change : move landing page in to pages
tgsnimesh Jan 12, 2026
19273d8
Dependancy Change : install react-router-dom
tgsnimesh Jan 12, 2026
74c69d8
implement basic routing system
tgsnimesh Jan 12, 2026
a9f45fe
change the default routing system into layout based design - using re…
tgsnimesh Jan 12, 2026
d1cf19d
implement auth layout
tgsnimesh Jan 12, 2026
2513cac
Update system into role base routing design
tgsnimesh Jan 13, 2026
d81e731
Refactor StepsCard and Footer components; add FeaturedListings compon…
noobconner21 Jan 13, 2026
b4b0252
Enhance main functionality and add login page
noobconner21 Jan 13, 2026
3f7675a
feat: add authentication hooks and password reset page
noobconner21 Jan 14, 2026
64862c5
intergrate app with axios api and refactoring
tgsnimesh Jan 14, 2026
8d37ea2
[Testing] : testing data change
tgsnimesh Jan 14, 2026
d99aa1c
feat: implement reusable loading and error components with retry
tgsnimesh Jan 14, 2026
e5f7624
feat(auth): refactor authentication flow with reusable UI, Zustand st…
tgsnimesh Jan 15, 2026
efb2244
[DELETE] : because changes of loging with Zustand state management li…
tgsnimesh Jan 16, 2026
1fe30bd
Refactoring password reset page ui design using clean component separ…
tgsnimesh Jan 16, 2026
0d6a0bd
[Fix] : duplicate routing
tgsnimesh Jan 16, 2026
14f2e73
Implement VerifyPhoneNumber page
tgsnimesh Jan 16, 2026
58827fa
feat(auth): add New Password page and update routing; enhance UI with…
noobconner21 Jan 20, 2026
40e8dc1
feat(ui): enhance loading indicators and update AuthLayout styles;
noobconner21 Jan 20, 2026
23956f4
feat(auth): implement registration functionality and add Register page
noobconner21 Jan 21, 2026
4df6e5f
feat: refactor loading and error states; implement pagination in Feat…
noobconner21 Jan 21, 2026
1e3a3f9
feat(ui): update FeaturedListings section styles to improve overflow …
noobconner21 Jan 21, 2026
3250b53
refactor(Register): move form validation error rendering into reusabl…
tgsnimesh Jan 21, 2026
563e367
Refactor the register service data
tgsnimesh Jan 21, 2026
e8df2d0
feat(auth): complete registration and verification flow; add success …
noobconner21 Jan 22, 2026
89cd2f3
- Added listing page property fetch
noobconner21 Jan 23, 2026
ecd9a00
feat(Navbar): enhance user authentication display; add demo login fun…
noobconner21 Jan 23, 2026
577c3c2
enhanse home page
noobconner21 Jan 28, 2026
2faafd0
Fix : loging request header format
tgsnimesh Jan 28, 2026
892ed02
Refactor and Implement Login
tgsnimesh Jan 28, 2026
48f8da2
emp -test change
tgsnimesh Jan 28, 2026
275315a
test subscription components
noobconner21 Mar 13, 2026
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
640 changes: 640 additions & 0 deletions bun.lock

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>frontend</title>
<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:wght@500;600;700&display=swap" rel="stylesheet">
<title>HotBedLK</title>
</head>
<body>
<div id="root"></div>
Expand Down
Loading