File tree Expand file tree Collapse file tree 6 files changed +65
-67
lines changed
Expand file tree Collapse file tree 6 files changed +65
-67
lines changed Original file line number Diff line number Diff line change 11import type { Metadata } from "next" ;
22import { Geist , Geist_Mono } from "next/font/google" ;
33import "./globals.css" ;
4- import BottomNavBar from "@/components/bottomNavbar" ;
54
65const geistSans = Geist ( {
76 variable : "--font-geist-sans" ,
@@ -14,8 +13,8 @@ const geistMono = Geist_Mono({
1413} ) ;
1514
1615export 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
2120export 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 ) ;
Original file line number Diff line number Diff 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 />
Original file line number Diff line number Diff 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 >
Original file line number Diff line number Diff 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 >
Original file line number Diff line number Diff 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 >
You can’t perform that action at this time.
0 commit comments