Skip to content
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

Landing page with logo type #573

Merged
merged 4 commits into from
Oct 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 15 additions & 7 deletions client/src/LandingPage.svelte
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
<svelte:head>
<title>unnote - The note taking app that doesn't suck</title>
<meta name="description" content="Privacy first, fast, simple &amp; from every device - wherever you are." />
</svelte:head>

<div class="flex center">
<div class="hidden-sm"></div>

<div class="full 1000">
<h1>unnote</h1>
<h1>
<img src={logo_type} alt="unnote" />
</h1>

<div class="section">
<strong>
Expand Down Expand Up @@ -39,7 +46,7 @@

<div class="flex one center section">
<article class="card two-third-800 half-1000">
<img src={ScreenshotDesktop} />
<img src={screenshotDesktop} />
<footer>
<h4>Browser / Full width</h4>
</footer>
Expand All @@ -48,13 +55,13 @@

<div class="flex one center section">
<article class="card half third-800 fourth-1000">
<img src={ScreenshotMobile1} />
<img src={screenshotMobile1} />
<footer>
<h4>Mobile / PWA - Note view</h4>
</footer>
</article>
<article class="card half third-800 fourth-1000">
<img src={ScreenshotMobile2} />
<img src={screenshotMobile2} />
<footer>
<h4>Mobile / PWA - List view</h4>
</footer>
Expand Down Expand Up @@ -99,9 +106,10 @@
</div>

<script>
import ScreenshotDesktop from './images/screenshot_desktop.png'
import ScreenshotMobile1 from './images/screenshot_mobile_1.png'
import ScreenshotMobile2 from './images/screenshot_mobile_2.png'
import screenshotDesktop from './images/screenshot_desktop.png'
import screenshotMobile1 from './images/screenshot_mobile_1.png'
import screenshotMobile2 from './images/screenshot_mobile_2.png'
import logo_type from './images/logo-type.svg'
</script>

<style lang="sass">
Expand Down
6 changes: 3 additions & 3 deletions client/src/Navbar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
<label for="bmenug" class="burger pseudo button">&#8801;</label>

<div class="menu">
{#if isFeatureEnabled('tasks')}
{#if isFeatureEnabled('tasks') && isApp}
<a href="/notes" class="button pseudo menu-button" use:link use:active={{ path: /\/notes\/*.*/ }}>All notes</a>
{/if}
{#if isFeatureEnabled('tasks')}
{#if isFeatureEnabled('tasks') && isApp}
<a href="/task-notes" class="button pseudo menu-button" use:link use:active={{ path: /\/task-notes\/*.*/ }}>Task notes</a>
{/if}
{#if isFeatureEnabled('tasks')}
{#if isFeatureEnabled('tasks') && isApp}
<a href="/tasks" class="button pseudo menu-button" use:link use:active>Tasks</a>
{/if}

Expand Down
1 change: 1 addition & 0 deletions client/src/images/logo-type.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshot_desktop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshot_mobile_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshot_mobile_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.