-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
b6502de
commit 2c6ab54
Showing
18 changed files
with
723 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<template> | ||
<div | ||
class="flex flex-col px-4 xl:px-8 text-light-text dark:text-dark-text bg-light-content dark:bg-dark-content" | ||
> | ||
<Head> | ||
<Title>{{ event.name }} {{ $t("_global.discussions_lower") }}</Title> | ||
</Head> | ||
<HeaderAppPage | ||
:event="event" | ||
:header="event.name + ' ' + $t('_global.discussion_lower')" | ||
:tagline="$t('pages.events.discussion.tagline')" | ||
:underDevelopment="true" | ||
> | ||
<div class="flex space-x-2 lg:space-x-3"> | ||
<BtnLabeled | ||
class="hidden md:block w-max" | ||
:cta="true" | ||
linkTo="/" | ||
label="components.btn-labeled.share-discussion" | ||
fontSize="sm" | ||
leftIcon="bi:box-arrow-up" | ||
iconSize="1.25em" | ||
ariaLabel="components.btn-labeled.share-discussion-aria-label" | ||
/> | ||
</div> | ||
</HeaderAppPage> | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import type { Event } from "~/types/event"; | ||
definePageMeta({ | ||
layout: "sidebar", | ||
}); | ||
const event: Event = { | ||
name: "Brandenburg Gate Climate Demo", | ||
tagline: "There is no Planet B", | ||
organizer: "Berlin Climate Org", | ||
type: "action", | ||
topic: "Environment", | ||
description: | ||
"Aute aliqua reprehenderit ex ut commodo nostrud et excepteur. Sunt amet velit sunt fugiat et excepteur dolore pariatur nisi non. Exercitation aute aute culpa commodo commodo ea Lorem aliquip id duis. Laboris nostrud ullamco ea voluptate et anim id adipisicing sint reprehenderit incididunt elit. Est fugiat pariatur elit culpa in incididunt eu esse cupidatat minim. Deserunt duis culpa minim Lorem consectetur quis fugiat ipsum nostrud voluptate veniam do. Reprehenderit duis officia in enim anim elit.", | ||
getInvolvedDescription: | ||
"Sint cillum excepteur sint cupidatat do consectetur excepteur nisi veniam. Sint id in sit eiusmod Lorem commodo minim culpa id cupidatat consectetur. Labore nisi est officia sunt occaecat.", | ||
inPersonLocation: "Brandenburg Gate, Berlin", | ||
date: new Date().toISOString().slice(0, 10), | ||
supporters: 30, | ||
imageURL: "/images/tech-from-below.svg", | ||
socialLinks: ["climate_org@mastodon", "climate_org@email.com"], | ||
}; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.