Skip to content

Commit

Permalink
update: section
Browse files Browse the repository at this point in the history
  • Loading branch information
DangTinh422003 committed Nov 9, 2024
1 parent f386acd commit 4d86ea0
Show file tree
Hide file tree
Showing 14 changed files with 541 additions and 367 deletions.
68 changes: 66 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"@radix-ui/react-slot": "^1.1.0",
"@supabase/ssr": "^0.5.1",
"@supabase/supabase-js": "^2.46.1",
"@tabler/icons-react": "^3.21.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^11.11.11",
Expand All @@ -25,6 +26,7 @@
"next-themes": "^0.3.0",
"react": "^18",
"react-dom": "^18",
"react-dropzone": "^14.3.5",
"react-icons": "^5.3.0",
"react-scroll-parallax": "^3.4.5",
"supabase": "^1.215.0",
Expand Down
2 changes: 1 addition & 1 deletion src/app/members/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export default function Page({ params: { id } }: MemberDetailProps) {
{/* Profile Section */}
<div className="flex flex-col items-start">
<img
src="/avatar/avatar.png"
src={member.img}
alt="Profile"
className={`
w-full
Expand Down
3 changes: 1 addition & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import Awards from '@/components/Awards'
import Footer from '@/components/Footer'
import Header from '@/components/Header'
import Hero from '@/components/Hero'
import MemberPortfolio from '@/components/MemberPortfolio'
import Members from '@/components/Members'
import Projects from '@/components/Projects'
import ScrollToTop from '@/components/ScrollToTop'
Expand All @@ -17,9 +16,9 @@ export default function Home() {
<Hero />
<About />
<Vision />
<Members />
<Awards />
<Projects />
<Members />
<Footer />
</div>
)
Expand Down
Loading

0 comments on commit 4d86ea0

Please sign in to comment.