-
Notifications
You must be signed in to change notification settings - Fork 1
Implement all basic public page #44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
6f7624c
feat: implement all basic public page
inact25 37d06b6
feat: implement all basic public page
inact25 f674b90
Merge pull request #1
inact25 6be33b7
feat: fix security issues, that issued by qodo review
inact25 ac8326d
feat: fix blog pagination
inact25 b5df188
Merge pull request #2
inact25 a948f46
feat: fix ssr for public page, separate type and constant
inact25 c1406dc
Merge pull request #3
inact25 a93e09a
fix: coderabitai issue fixed
inact25 728a0a6
fix: coderabitai issue fixed
inact25 ab1b0a5
fix: coderabitai issue fixed
inact25 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| import { Metadata } from 'next'; | ||
| import { Navbar } from '@/components/landing/Navbar'; | ||
| import { Footer } from '@/components/landing/Footer'; | ||
| import { | ||
| AboutHero, | ||
| MissionVision, | ||
| ValuesSection, | ||
| TechnologyStack, | ||
| TeamSection, | ||
| StatsSection, | ||
| } from '@/components/about'; | ||
|
|
||
| export const metadata: Metadata = { | ||
| title: 'About Us - Etags', | ||
| description: | ||
| 'Learn about Etags, our mission to secure product authenticity with blockchain technology, and meet the team behind the platform.', | ||
| openGraph: { | ||
| title: 'About Us - Etags', | ||
| description: | ||
| 'Platform verifikasi produk berbasis blockchain yang mengamankan rantai pasokan.', | ||
| }, | ||
| }; | ||
|
|
||
| export default function AboutPage() { | ||
| return ( | ||
| <div className="relative min-h-screen bg-white font-sans selection:bg-[#2B4C7E]/20 selection:text-[#0C2340]"> | ||
| {/* Background Effects */} | ||
| <div className="fixed inset-0 pointer-events-none z-0"> | ||
| <div className="absolute top-[-10%] left-[-5%] w-[50vw] h-[50vw] rounded-full bg-[#2B4C7E]/10 blur-[120px]" /> | ||
| <div className="absolute bottom-[-10%] right-[-10%] w-[40vw] h-[40vw] rounded-full bg-[#A8A8A8]/20 blur-[120px]" /> | ||
| </div> | ||
|
|
||
| <Navbar /> | ||
|
|
||
| <main className="relative z-10 pt-32 pb-16"> | ||
| <div className="container mx-auto px-4 sm:px-6"> | ||
| <AboutHero /> | ||
| <MissionVision /> | ||
| <ValuesSection /> | ||
| <TechnologyStack /> | ||
| <TeamSection /> | ||
| <StatsSection /> | ||
| </div> | ||
| </main> | ||
|
|
||
| <Footer /> | ||
| </div> | ||
| ); | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.