-
Notifications
You must be signed in to change notification settings - Fork 0
Fix: use animated number #13
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
5 commits
Select commit
Hold shift + click to select a range
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| export default function LegalNoticePage() { | ||
| return ( | ||
| <div className="min-h-screen bg-brand-dark-blue"> | ||
| <div className="mx-auto px-10 lg:px-20 py-20"> | ||
| <h1 className="text-4xl md:text-5xl font-black text-white mb-12"> | ||
| LEGAL NOTICE | ||
| </h1> | ||
|
|
||
| <div className="prose prose-invert max-w-none"> | ||
| <p className="text-gray-300 text-lg"> | ||
| Content coming soon... | ||
| </p> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| ) | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| export default function PrivacyPolicyPage() { | ||
| return ( | ||
| <div className="min-h-screen bg-brand-dark-blue"> | ||
| <div className="mx-auto px-10 lg:px-20 py-20"> | ||
| <h1 className="text-4xl md:text-5xl font-black text-white mb-12"> | ||
| PRIVACY POLICY | ||
| </h1> | ||
|
|
||
| <div className="prose prose-invert max-w-none"> | ||
| <p className="text-gray-300 text-lg"> | ||
| Content coming soon... | ||
| </p> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| ) | ||
| } |
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,82 @@ | ||
| import Link from 'next/link' | ||
|
|
||
| export default function Footer() { | ||
| return ( | ||
| <footer className="bg-brand-dark-blue"> | ||
| <div className= "mx-auto px-20 py-10"> | ||
| <div className="flex flex-col md:flex-row items-center justify-between gap-6"> | ||
| {/* Donate Link - Left */} | ||
| <a | ||
| href="https://buy.stripe.com/6oE16k2dg6gz3n2145" | ||
| target="_blank" | ||
| rel="noopener noreferrer" | ||
| className="text-white font-bold text-sm tracking-widest hover:text-brand-pink transition-colors uppercase" | ||
| > | ||
| DONATE | ||
| </a> | ||
|
|
||
| {/* Legal Links - Center */} | ||
| <div className="flex items-center gap-8"> | ||
| <Link | ||
| href="/legal-notice" | ||
| className="text-white font-bold text-sm tracking-widest hover:text-brand-pink transition-colors uppercase" | ||
| > | ||
| LEGAL NOTICE | ||
| </Link> | ||
| <Link | ||
| href="/privacy-policy" | ||
| className="text-white font-bold text-sm tracking-widest hover:text-brand-pink transition-colors uppercase" | ||
| > | ||
| PRIVACY POLICY | ||
| </Link> | ||
| </div> | ||
|
|
||
| {/* Social Icons - Right */} | ||
| <div className="flex items-center gap-4"> | ||
| {/* Instagram */} | ||
| <a | ||
| href="https://www.instagram.com/startmunich/" | ||
| target="_blank" | ||
| rel="noopener noreferrer" | ||
| className="text-white hover:text-brand-pink transition-colors" | ||
| aria-label="Instagram" | ||
| > | ||
| <svg | ||
| className="w-6 h-6" | ||
| fill="currentColor" | ||
| viewBox="0 0 24 24" | ||
| aria-hidden="true" | ||
| > | ||
| <path | ||
| fillRule="evenodd" | ||
| d="M12.315 2c2.43 0 2.784.013 3.808.06 1.064.049 1.791.218 2.427.465a4.902 4.902 0 011.772 1.153 4.902 4.902 0 011.153 1.772c.247.636.416 1.363.465 2.427.048 1.067.06 1.407.06 4.123v.08c0 2.643-.012 2.987-.06 4.043-.049 1.064-.218 1.791-.465 2.427a4.902 4.902 0 01-1.153 1.772 4.902 4.902 0 01-1.772 1.153c-.636.247-1.363.416-2.427.465-1.067.048-1.407.06-4.123.06h-.08c-2.643 0-2.987-.012-4.043-.06-1.064-.049-1.791-.218-2.427-.465a4.902 4.902 0 01-1.772-1.153 4.902 4.902 0 01-1.153-1.772c-.247-.636-.416-1.363-.465-2.427-.047-1.024-.06-1.379-.06-3.808v-.63c0-2.43.013-2.784.06-3.808.049-1.064.218-1.791.465-2.427a4.902 4.902 0 011.153-1.772A4.902 4.902 0 015.45 2.525c.636-.247 1.363-.416 2.427-.465C8.901 2.013 9.256 2 11.685 2h.63zm-.081 1.802h-.468c-2.456 0-2.784.011-3.807.058-.975.045-1.504.207-1.857.344-.467.182-.8.398-1.15.748-.35.35-.566.683-.748 1.15-.137.353-.3.882-.344 1.857-.047 1.023-.058 1.351-.058 3.807v.468c0 2.456.011 2.784.058 3.807.045.975.207 1.504.344 1.857.182.466.399.8.748 1.15.35.35.683.566 1.15.748.353.137.882.3 1.857.344 1.054.048 1.37.058 4.041.058h.08c2.597 0 2.917-.01 3.96-.058.976-.045 1.505-.207 1.858-.344.466-.182.8-.398 1.15-.748.35-.35.566-.683.748-1.15.137-.353.3-.882.344-1.857.048-1.055.058-1.37.058-4.041v-.08c0-2.597-.01-2.917-.058-3.96-.045-.976-.207-1.505-.344-1.858a3.097 3.097 0 00-.748-1.15 3.098 3.098 0 00-1.15-.748c-.353-.137-.882-.3-1.857-.344-1.023-.047-1.351-.058-3.807-.058zM12 6.865a5.135 5.135 0 110 10.27 5.135 5.135 0 010-10.27zm0 1.802a3.333 3.333 0 100 6.666 3.333 3.333 0 000-6.666zm5.338-3.205a1.2 1.2 0 110 2.4 1.2 1.2 0 010-2.4z" | ||
| clipRule="evenodd" | ||
| /> | ||
| </svg> | ||
| </a> | ||
|
|
||
| {/* LinkedIn */} | ||
| <a | ||
| href="https://www.linkedin.com/company/startmunich/" | ||
| target="_blank" | ||
| rel="noopener noreferrer" | ||
| className="text-white hover:text-brand-pink transition-colors" | ||
| aria-label="LinkedIn" | ||
| > | ||
| <svg | ||
| className="w-6 h-6" | ||
| fill="currentColor" | ||
| viewBox="0 0 24 24" | ||
| aria-hidden="true" | ||
| > | ||
| <path | ||
| d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z" | ||
| /> | ||
| </svg> | ||
| </a> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </footer> | ||
| ) | ||
| } | ||
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor: Extra space in className attribute.
There's an extra space between
className=and the opening quote. While this works, it's inconsistent with the codebase style.Fix
📝 Committable suggestion
🤖 Prompt for AI Agents