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

feat: new logo, mike and jake #172

Merged
merged 1 commit into from
Sep 2, 2024
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
2 changes: 1 addition & 1 deletion apps/website/app/app.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="flex flex-col min-h-screen bg-white dark:bg-gray-900/75 font-serif">
<div class="flex flex-col min-h-screen bg-white dark:bg-gray-800 font-serif">
<Header transparent />
<NuxtPage />
</div>
Expand Down
Binary file added apps/website/app/assets/img/logo-full-dark.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 added apps/website/app/assets/img/logo-full.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 11 additions & 6 deletions apps/website/app/components/Logo.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
<template>
<NuxtLink to="/" class="flex items-center gap-2 leading-tight hover:opacity-80 duration-200">
<img src="~/assets/img/logo.png" alt="Logo" class="h-12 w-12">
<p class="text-gray-700 dark:text-white font-bold text-xl">
Next Orders
</p>
</NuxtLink>
<ClientOnly>
<NuxtLink to="/" class="flex items-center gap-2 leading-tight hover:opacity-80 duration-200">
<img alt="Logo" src="~/assets/img/logo-full.png" class="h-12 w-auto" :class="{ hidden: isDark }">
<img alt="Logo Dark" src="~/assets/img/logo-full-dark.png" class="h-12 w-auto" :class="{ hidden: !isDark }">
</NuxtLink>
</ClientOnly>
</template>

<script setup lang="ts">
const colorMode = useColorMode()
const isDark = computed(() => colorMode.value === 'dark')
</script>
9 changes: 7 additions & 2 deletions apps/website/app/pages/index.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
<template>
<UContainer class="max-w-screen-md">
<div class="flex items-center justify-center group">
<img src="/mike/idle.png" alt="" class="h-40 w-40 group-hover:-translate-x-8 duration-200">
<img src="/jake/idle.png" alt="" class="h-40 w-40 scale-x-[-1] group-hover:translate-x-8 duration-200">
</div>

<div class="space-y-6 mt-10 text-lg">
<p>
Живут в одном чудесном городе два давних друга и коллеги:
<span class="text-green-600 font-medium">Миша</span> и
<span class="text-blue-600 font-medium">Женя</span>. Дружат с
<span class="text-green-500 font-medium">Миша</span> и
<span class="text-blue-500 font-medium">Женя</span>. Дружат с
детства, вместе ходят в спортзал, ездят на рыбалку. Любят обсуждать
технологии и автомобили. Миша – оптимист. Верит в развитие предприятий
и постоянно улучшающийся сервис. Увлеченно наблюдает за сферой еды.
Expand Down
Binary file added apps/website/public/jake/idle.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 added apps/website/public/mike/idle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading