Skip to content
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
55 changes: 55 additions & 0 deletions assets/static/cross.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 removed assets/static/pacman.png
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const props = defineProps<Props>();
bottom: 0;
background-size: 30px;
background-repeat: repeat;
background-image: url("@/assets/static/pacman.png");
background-image: url("@/assets/static/cross.svg");
opacity: 0.1;
}
</style>
5 changes: 3 additions & 2 deletions pages/catalog/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

<script setup lang="ts">
import { Availability } from "~/type/Availability";
import CatalogBackground from "~/pages/catalog/CatalogBackground.vue";

definePageMeta({
layout: "public",
Expand All @@ -43,11 +44,11 @@ const getIcon = (service: string) => {
</script>

<template>
<PackManBackground class="flex items-center justify-center">
<CatalogBackground class="flex items-center justify-center">
<h1 class="text-center text-5xl font-bold">
{{ $t("catalog.availabilityCatalog") }}
</h1>
</PackManBackground>
</CatalogBackground>
<div
class="container py-8 m-auto grid md:grid-cols-2 lg:grid-cols-3 grid-cols gap-4"
>
Expand Down