17 lines
1.4 KiB
TypeScript
17 lines
1.4 KiB
TypeScript
import { dom, type VirtualNode } from "#shared/dom.virtual.util";
|
|
|
|
export default function(content: VirtualNode[])
|
|
{
|
|
return [dom('div', { style: 'margin-left: auto; margin-right: auto; width: 75%; font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-size: 1rem; line-height: 1.5rem; color: #171717;' }, [
|
|
dom('div', { style: 'margin-left: auto; margin-right: auto; text-align: center;' }, [
|
|
dom('a', { style: 'display: inline-block;', attributes: { href: 'https://d-any.com' } }, [
|
|
dom('img', { style: 'display: block; height: 4rem; width: 4rem; margin-left: auto; margin-right: auto;', attributes: { src: 'https://d-any.com/logo.light.png', alt: 'Logo', title: 'd[any] logo', width: '64', height: '64' } }),
|
|
dom('span', { style: `margin-inline-end: 1rem; font-size: 1.5rem; color: black; text-decoration: none; line-height: 2rem; font-weight: 700; font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;`, text: 'd[any]' })
|
|
])
|
|
]),
|
|
dom('div', { style: 'padding: 1rem;' }, content)
|
|
]),
|
|
dom('div', { style: 'background-color:#171717;' }, [
|
|
dom('p', { style: 'padding-top: 1rem; padding-bottom: 1rem; text-align: center; font-size: 0.75rem; line-height: 1rem; color: #fff;', text: 'Copyright Peaceultime / d[any] - 2024 / 2025' })
|
|
])]
|
|
} |