-
Notifications
You must be signed in to change notification settings - Fork 3
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 #16 from elwood-software/chore/www-mobile-fixes
www & docs mobile fixes
- Loading branch information
Showing
14 changed files
with
121 additions
and
23 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,13 @@ | ||
--- | ||
title: Desktop | ||
--- | ||
|
||
Elwood... but on your desktop. 🤯 {% .lead %} | ||
|
||
{% quick-links %} | ||
|
||
{% quick-link title="Install for Mac" icon="installation" href="https://elwood.software/desktop/download?p=mac" description="Download for macOS" /%} | ||
|
||
{% quick-link title="More Information" icon="plugins" href="https://github.com/elwood-software/desktop" description="Get more info in the repo." /%} | ||
|
||
{% /quick-links %} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,22 +38,29 @@ function Header(): JSX.Element { | |
'sticky top-0 z-50 flex flex-none flex-wrap items-center justify-between bg-background px-4 py-5 shadow-md shadow-slate-900/5 transition duration-500 dark:shadow-none sm:px-6 lg:px-8', | ||
isScrolled | ||
? 'dark:bg-background/95 dark:backdrop-blur dark:[@supports(backdrop-filter:blur(0))]:bg-background/75' | ||
: 'dark:bg-transparent', | ||
: 'dark:bg-background/95', | ||
)}> | ||
<div className="mr-6 flex lg:hidden"> | ||
<MobileNavigation /> | ||
</div> | ||
<div className="relative flex flex-grow basis-0 items-center"> | ||
<div className="relative flex flex-grow basis-0 items-center space-x-4 text-sm font-medium text-muted-foreground"> | ||
<Link href="/" aria-label="Home page"> | ||
<Logo className="hidden h-9 w-auto fill-slate-700 dark:fill-sky-100 lg:block" /> | ||
<Logo className="hidden h-9 w-auto fill-foreground lg:block" /> | ||
</Link> | ||
|
||
<Link href="/" className="ml-3 hidden hover:text-foreground md:block"> | ||
Home | ||
</Link> | ||
<Link href="/docs" className="hidden hover:text-foreground md:block"> | ||
Docs | ||
</Link> | ||
</div> | ||
<div className="-my-5 mr-6 sm:mr-8 md:mr-0">{/* <Search /> */}</div> | ||
<div className="relative flex basis-0 justify-end gap-6 sm:gap-8 md:flex-grow"> | ||
{/* <ThemeSelector className="relative z-10" /> */} | ||
<Link | ||
href="mailto:[email protected]" | ||
className="group text-sm text-muted-foreground hover:text-foreground" | ||
className="group hidden text-sm text-muted-foreground hover:text-foreground md:block" | ||
aria-label="Email us"> | ||
[email protected] | ||
</Link> | ||
|
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
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,3 @@ | ||
export async function GET() { | ||
return Response.redirect('https://github.com/elwood-software/desktop', 302); | ||
} |
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