refactor: ♻️ Use new Versia branding everywhere

This commit is contained in:
Jesse Wierzbinski 2024-08-28 00:23:29 +02:00
parent b734d8ad67
commit cc54e95e92
No known key found for this signature in database
68 changed files with 147 additions and 154 deletions

View file

@ -5,7 +5,7 @@
</template>
<script lang="ts" setup>
import type { Status } from "@lysand-org/client/types";
import type { Status } from "@versia/client/types";
import Timeline from "./timeline.vue";
const props = defineProps<{

View file

@ -5,7 +5,7 @@
</template>
<script lang="ts" setup>
import type { Status } from "@lysand-org/client/types";
import type { Status } from "@versia/client/types";
import { useHomeTimeline } from "~/composables/HomeTimeline";
import Timeline from "./timeline.vue";

View file

@ -5,7 +5,7 @@
</template>
<script lang="ts" setup>
import type { Status } from "@lysand-org/client/types";
import type { Status } from "@versia/client/types";
import { useLocalTimeline } from "~/composables/LocalTimeline";
import Timeline from "./timeline.vue";

View file

@ -5,7 +5,7 @@
</template>
<script lang="ts" setup>
import type { Notification } from "@lysand-org/client/types";
import type { Notification } from "@versia/client/types";
import { useNotificationTimeline } from "~/composables/NotificationTimeline";
import Timeline from "./timeline.vue";

View file

@ -5,7 +5,7 @@
</template>
<script lang="ts" setup>
import type { Status } from "@lysand-org/client/types";
import type { Status } from "@versia/client/types";
import { usePublicTimeline } from "~/composables/PublicTimeline";
import Timeline from "./timeline.vue";

View file

@ -4,7 +4,7 @@
</template>
<script lang="ts" setup>
import type { Notification, Status } from "@lysand-org/client/types";
import type { Notification, Status } from "@versia/client/types";
import { computed } from "vue";
import NoteItem from "../social-elements/notes/note.vue";
import NotificationItem from "../social-elements/notifications/notif.vue";

View file

@ -6,7 +6,7 @@
const root = useParentElement(useParentElement());
// Store and keep y to restore it on page change
const route = useRoute();
const yStored = useLocalStorage("lysand:scroll", {
const yStored = useLocalStorage("versia:scroll", {
[route.fullPath]: 0,
});
const { y } = useScroll(root);

View file

@ -35,7 +35,7 @@
</template>
<script lang="ts" setup>
import type { Notification, Status } from "@lysand-org/client/types";
import type { Notification, Status } from "@versia/client/types";
import { useIntersectionObserver } from "@vueuse/core";
import { onMounted, watch } from "vue";
import Button from "~/packages/ui/components/buttons/button.vue";