Skip to content

Commit adf0aaa

Browse files
committed
intial commit
1 parent afa9087 commit adf0aaa

File tree

6 files changed

+65
-67
lines changed

6 files changed

+65
-67
lines changed

app/layout.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import type { Metadata } from "next";
22
import { Geist, Geist_Mono } from "next/font/google";
33
import "./globals.css";
4-
import BottomNavBar from "@/components/bottomNavbar";
54

65
const geistSans = Geist({
76
variable: "--font-geist-sans",
@@ -14,8 +13,8 @@ const geistMono = Geist_Mono({
1413
});
1514

1615
export const metadata: Metadata = {
17-
title: "Code Compass",
18-
description: "Generated by create next app",
16+
title: "DEVSHELF",
17+
description: "your ecommerce style catalog of tech resource",
1918
};
2019

2120
export default function RootLayout({
@@ -29,7 +28,6 @@ export default function RootLayout({
2928
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
3029
>
3130
{children}
32-
<BottomNavBar/>
3331
</body>
3432
</html>
3533
);

app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export default function Home() {
4646
<div className="flex flex-col md:flex-row p-4 md:p-0">
4747
<FilterSection onFilterSubmit={setFilters} onClearFilters={handleClearFilters} />
4848
<div className="flex-1 max-w-7xl px-4 py-6 space-y-8 w-full">
49-
<TabSection activeTab={activeTab} onTabChange={setActiveTab} />
49+
{/* <TabSection activeTab={activeTab} onTabChange={setActiveTab} /> */}
5050
<ProjectGrid activeTab={activeTab} filters={filters} refreshTrigger={refreshTrigger} />
5151
</div>
5252
<AddProjectFAB />

components/Navbar.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@ const Navbar = () => {
3535

3636
{/* Left */}
3737
<div className="flex items-center gap-4">
38-
<button
38+
{/* <button
3939
className="border text-black border-gray-400 rounded-full p-2"
4040
onClick={() => router.push("https://gecian-hub.netlify.app/")}
4141
>
4242
<ArrowLeftIcon className="w-5 h-5" />
43-
</button>
43+
</button> */}
4444

4545
<Link href="/">
4646
<h1 className="text-2xl font-bold text-gray-900 tracking-tight hover:opacity-90 transition-opacity">
47-
Gecian_Collab
47+
DEVSHELF
4848
</h1>
4949
</Link>
5050
</div>

components/loadingScrenn.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,22 @@ const LoadingScreen = () => {
2828
secAnim ? "move-left" : " "
2929
}`}
3030
>
31-
Gecian
31+
DEV
3232
</span>
3333
{" "}
3434
<span
3535
className={`inline-block bg-gradient-to-r from-blue-500 to-orange-400 bg-clip-text text-transparent ${
3636
secAnim ? "move-right" : " "
3737
}`}
3838
>
39-
H
39+
SHE
4040
<span className={`rect-i ${secAnim ? "move-right-i" : ""}`}>
4141
<span
4242
className="dot-i"
4343
onAnimationEnd={handleJumpAnimation}
4444
></span>
4545
</span>
46-
ub
46+
LF
4747
</span>
4848
<span className={`dot-2 ${secAnim? "bounce":" "}`}></span>
4949
</h1>

components/repeto/ProjectCard.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,21 +56,21 @@ export default function ProjectCard({ project }: ProjectCardProps) {
5656
<div className="flex items-center space-x-3 group">
5757
<CalendarDays className="w-5 h-5 text-blue-600" />
5858
<div>
59-
<p className="text-gray-500 text-xs">Year</p>
59+
<p className="text-gray-500 text-xs">Resource Type </p>
6060
<p className="text-gray-800 font-medium">{yearOfSubmission}</p>
6161
</div>
6262
</div>
6363
<div className="flex items-center space-x-3 group">
6464
<WalletCards className="w-5 h-5 text-blue-600" />
6565
<div>
66-
<p className="text-gray-500 text-xs">Project Type</p>
66+
<p className="text-gray-500 text-xs">Domain </p>
6767
<p className="text-gray-800 font-medium">{projectType}</p>
6868
</div>
6969
</div>
7070
<div className="flex items-center space-x-3 group">
7171
<Users className="w-5 h-5 text-blue-600" />
7272
<div>
73-
<p className="text-gray-500 text-xs">Domain</p>
73+
<p className="text-gray-500 text-xs">Year</p>
7474
<p className="text-gray-800 font-medium">{domain === 'Other' ? project.customDomain || 'Other' : domain}</p>
7575
</div>
7676
</div>

package-lock.json

Lines changed: 53 additions & 53 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)