From ed80009dfe52d91e0df2e55e564b0f420ce5d5d8 Mon Sep 17 00:00:00 2001 From: mpsalunggg Date: Tue, 27 Aug 2024 23:54:35 +0700 Subject: [PATCH 1/7] wip: about section --- src/app/[locale]/about/page.tsx | 6 +++ src/components/common/navbar/index.tsx | 2 +- src/components/layout/wrapper/index.tsx | 2 +- src/features/about/constant.tsx | 22 ++++++++++ src/features/about/index.tsx | 55 +++++++++++++++++++++++++ src/features/events/index.tsx | 8 ++-- tailwind.config.ts | 6 +++ 7 files changed, 95 insertions(+), 6 deletions(-) create mode 100644 src/app/[locale]/about/page.tsx create mode 100644 src/features/about/constant.tsx create mode 100644 src/features/about/index.tsx diff --git a/src/app/[locale]/about/page.tsx b/src/app/[locale]/about/page.tsx new file mode 100644 index 0000000..e08c782 --- /dev/null +++ b/src/app/[locale]/about/page.tsx @@ -0,0 +1,6 @@ +import AboutPage from "@/features/about"; + +const About = () => { + return ; +}; +export default About; diff --git a/src/components/common/navbar/index.tsx b/src/components/common/navbar/index.tsx index b8301df..5d8b70c 100644 --- a/src/components/common/navbar/index.tsx +++ b/src/components/common/navbar/index.tsx @@ -16,7 +16,7 @@ const Navbar = () => {
-