Skip to content

Commit f4c58e4

Browse files
committed
feat: add logo and fix: some ui and script 🍎
1 parent eaf140f commit f4c58e4

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

app.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
v-model="searchTerm"
1818
:placeholder="selectedCategory ? `Search in ${selectedCategory}` : 'Search'" />
1919
</div>
20-
<div @click="searchTerm = ''" class="invisible flex cursor-pointer text-neutral-300 dark:text-neutral-500 transition-all group-focus-within:visible">
20+
<div @click="searchTerm = ''" class="opacity-0 flex cursor-pointer text-neutral-300 dark:text-neutral-500 transition-all group-focus-within:opacity-100">
2121
<Icon v-if="!loading" name="solar:close-square-bold" size="24" />
2222
<Icon v-else-if="loading" name="Loading" size="20" />
2323
</div>

components/header/Logo.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<span class="flex items-center justify-center">
33
<NuxtLink to="/">
4-
<NuxtImg class="mx-auto my-0 h-14" src="https://seeklogo.com/images/S/supreme-ny-logo-AAF66BE276-seeklogo.com.png" />
4+
<NuxtImg class="mx-auto my-0 h-12" src="logo.png" />
55
</NuxtLink>
66
</span>
77
</template>

components/header/index.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<template>
2-
<div class="flex justify-center pb-11 pt-7">
2+
<div class="flex justify-center py-5">
33
<div class="mx-auto my-0">
44
<HeaderLogo />
5-
<HeaderDate />
65
</div>
76
</div>
87
</template>

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
"name": "nuxtcommerce",
33
"version": "1.0.6",
44
"private": true,
5+
"author": "zackha",
6+
"description": "Headless storefront for Woocommerce (Nuxt/Vue)",
57
"scripts": {
68
"dev": "nuxi dev",
79
"build": "nuxi build",

public/logo.png

63.8 KB
Loading

0 commit comments

Comments
 (0)