-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from oxen-io/fix/web-191/hero_header_layout
Improved landing page hero and header responsiveness #10 Continued
- Loading branch information
Showing
27 changed files
with
707 additions
and
122 deletions.
There are no files selected for viewing
This file contains 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,20 @@ | ||
{ | ||
// Place your session-website workspace snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and | ||
// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope | ||
// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is | ||
// used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | ||
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. | ||
// Placeholders with the same ids are connected. | ||
"cn Class Definition": { | ||
"scope": "typescriptreact", | ||
"prefix": ["cl", "class"], | ||
"body": ["className={cn('$0')}"], | ||
"description": "Define classes using cn package", | ||
}, | ||
"cn to existing Class Definition": { | ||
"scope": "typescriptreact", | ||
"prefix": ["cn"], | ||
"body": ["cn($0'')"], | ||
"description": "Define classes using cn package when className is already defined", | ||
}, | ||
} |
This file contains 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 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,28 @@ | ||
import { EXTERNAL_ROUTES, ROUTES, SOCIALS } from '@/lib/constants'; | ||
import { Footer as FooterComp } from '@session/ui/components/Footer'; | ||
import { cn } from '@session/ui/lib/utils'; | ||
|
||
import { useTranslations } from 'next-intl'; | ||
export function Footer() { | ||
const dictionary = useTranslations('navigation'); | ||
|
||
const menuItems = [...ROUTES, ...EXTERNAL_ROUTES].map( | ||
({ dictionaryKey, href, linkType = 'internal' }) => ({ | ||
title: dictionary(dictionaryKey), | ||
href: href, | ||
linkType, | ||
}) | ||
); | ||
|
||
const socialLinks = Object.values(SOCIALS); | ||
|
||
return ( | ||
<FooterComp | ||
logo={{ src: '/images/logo.png', alt: 'Session Token Logo' }} | ||
menuItems={menuItems} | ||
socialLinks={socialLinks} | ||
footerManagedBy={dictionary('managedBy')} | ||
className={cn('max-w-screen-3xl my-16 w-full px-8')} | ||
/> | ||
); | ||
} |
This file contains 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 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 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 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 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.