mirror of
https://github.com/thiloho/archtika.git
synced 2025-11-22 10:51:36 +01:00
28 lines
753 B
Svelte
28 lines
753 B
Svelte
|
|
<script lang="ts">
|
||
|
|
import { enhance } from "$app/forms";
|
||
|
|
import WebsiteEditor from "$lib/components/WebsiteEditor.svelte";
|
||
|
|
|
||
|
|
const { data } = $props();
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<WebsiteEditor
|
||
|
|
id={data.website.id}
|
||
|
|
title={data.website.title}
|
||
|
|
previewContent="https://aurora.thilohohlt.com"
|
||
|
|
fullPreview={true}
|
||
|
|
>
|
||
|
|
<section>
|
||
|
|
<h2>Publish website</h2>
|
||
|
|
|
||
|
|
<p>
|
||
|
|
The preview area on this page allows you to see exactly how your website will look when it is
|
||
|
|
is published. If you are happy with the results, click the button below and your website will
|
||
|
|
be published on the Internet.
|
||
|
|
</p>
|
||
|
|
|
||
|
|
<form method="POST" action="?/publishWebsite" use:enhance>
|
||
|
|
<button type="submit">Publish</button>
|
||
|
|
</form>
|
||
|
|
</section>
|
||
|
|
</WebsiteEditor>
|