Initial commit
6
.dockerignore
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
node_modules/
|
||||||
|
.git
|
||||||
|
.gitignore
|
||||||
|
*.log
|
||||||
|
dist
|
||||||
|
Dockerfile
|
||||||
9
.editorconfig
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
||||||
|
end_of_line = lf
|
||||||
|
charset = utf-8
|
||||||
|
trim_trailing_whitespace = false
|
||||||
|
insert_final_newline = false
|
||||||
37
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,37 @@
|
||||||
|
# build output
|
||||||
|
dist/
|
||||||
|
# generated types
|
||||||
|
.astro/
|
||||||
|
|
||||||
|
# dependencies
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# logs
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
pnpm-debug.log*
|
||||||
|
|
||||||
|
|
||||||
|
# environment variables
|
||||||
|
.env
|
||||||
|
.env.local
|
||||||
|
.env.production
|
||||||
|
|
||||||
|
# macOS-specific files
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# jetbrains setting folder
|
||||||
|
.idea/
|
||||||
|
|
||||||
|
# Playwright
|
||||||
|
/test-results/
|
||||||
|
/playwright-report/
|
||||||
|
/blob-report/
|
||||||
|
/playwright/.cache/
|
||||||
|
|
||||||
|
# Backend
|
||||||
|
backend/target/
|
||||||
|
|
||||||
|
# Custom
|
||||||
|
src/assets/
|
||||||
6
.prettierrc.yml
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
semi: false
|
||||||
|
singleQuote: true
|
||||||
|
trailingComma: 'es5'
|
||||||
|
bracketSpacing: true
|
||||||
|
printWidth: 500
|
||||||
|
proseWrap: 'preserve'
|
||||||
4
.vscode/extensions.json
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"recommendations": ["astro-build.astro-vscode"],
|
||||||
|
"unwantedRecommendations": []
|
||||||
|
}
|
||||||
11
.vscode/launch.json
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"command": "./node_modules/.bin/astro dev",
|
||||||
|
"name": "Development server",
|
||||||
|
"request": "launch",
|
||||||
|
"type": "node-terminal"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
17
@dasig/Optimizers/OptimizeBackground.tsx
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
import sharp from 'sharp'
|
||||||
|
|
||||||
|
const convertBackground = async () => {
|
||||||
|
const inputSrc = 'src/assets/images/background.png'
|
||||||
|
const webpOutput = 'fwt/images/background.webp'
|
||||||
|
const avifOutput = 'fwt/images/background.avif'
|
||||||
|
|
||||||
|
const avifBuffer = await sharp(inputSrc).avif({ quality: 60 }).resize(1920).toBuffer()
|
||||||
|
await sharp(avifBuffer).toFile(avifOutput)
|
||||||
|
|
||||||
|
const webpBuffer = await sharp(inputSrc).webp({ quality: 75 }).resize(1920).toBuffer()
|
||||||
|
await sharp(webpBuffer).toFile(webpOutput)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default () => {
|
||||||
|
convertBackground()
|
||||||
|
}
|
||||||
21
@dasig/Optimizers/OptimizeImage.tsx
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
import sharp from 'sharp'
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
src: string
|
||||||
|
size?: number
|
||||||
|
}
|
||||||
|
|
||||||
|
const convertImage = async (props: Props) => {
|
||||||
|
const avifOutputPath = `fwt/images/${props.src.split('.').slice(0, -1).join('.')}.avif`
|
||||||
|
const webpOutputPath = `fwt/images/${props.src.split('.').slice(0, -1).join('.')}.webp`
|
||||||
|
|
||||||
|
const avifBuffer = await sharp(`src/assets/images/${props.src}`).avif({ quality: 60 }).resize(props.size).toBuffer()
|
||||||
|
await sharp(avifBuffer).toFile(avifOutputPath)
|
||||||
|
|
||||||
|
const webpBuffer = await sharp(`src/assets/images/${props.src}`).webp({ quality: 75 }).resize(props.size).toBuffer()
|
||||||
|
await sharp(webpBuffer).toFile(webpOutputPath)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default (props: Props) => {
|
||||||
|
convertImage(props)
|
||||||
|
}
|
||||||
34
@dasig/Optimizers/OptimizeLogo.tsx
Normal file
|
|
@ -0,0 +1,34 @@
|
||||||
|
import sharp from 'sharp'
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
size?: number
|
||||||
|
favicon?: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
const convertLogo = async (props: Props) => {
|
||||||
|
const inputSrc = 'src/assets/images/logo.png'
|
||||||
|
const webpImage = 'fwt/images/logo.webp'
|
||||||
|
const avifImage = 'fwt/images/logo.avif'
|
||||||
|
|
||||||
|
const avifBuffer = await sharp(inputSrc).avif({ quality: 60 }).resize(props.size).toBuffer()
|
||||||
|
await sharp(avifBuffer).toFile(avifImage)
|
||||||
|
|
||||||
|
const webpBuffer = await sharp(inputSrc).webp({ quality: 75 }).resize(props.size).toBuffer()
|
||||||
|
await sharp(webpBuffer).toFile(webpImage)
|
||||||
|
}
|
||||||
|
|
||||||
|
const generateFavicon = async (props: Props) => {
|
||||||
|
const inputSrc = 'src/assets/images/logo.png'
|
||||||
|
const favicon = 'public/favicon.png'
|
||||||
|
|
||||||
|
const faviconBuffer = await sharp(inputSrc).png({ quality: 90 }).resize(50).toBuffer()
|
||||||
|
await sharp(faviconBuffer).toFile(favicon)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default (props: Props) => {
|
||||||
|
convertLogo(props)
|
||||||
|
|
||||||
|
if (props.favicon) {
|
||||||
|
generateFavicon(props)
|
||||||
|
}
|
||||||
|
}
|
||||||
50
@dasig/components/Background.tsx
Normal file
|
|
@ -0,0 +1,50 @@
|
||||||
|
import '../styles/Background.sass'
|
||||||
|
import { Show, createSignal } from 'solid-js'
|
||||||
|
import fs from 'fs'
|
||||||
|
import webpPath from '../images/background.avif'
|
||||||
|
import avifPath from '../images/background.avif'
|
||||||
|
import noBackground from '../images/no-background.webp'
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
image?: boolean
|
||||||
|
color?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
let [imageLoaded, setImageLoaded] = createSignal(false)
|
||||||
|
|
||||||
|
const checkBackground = () => {
|
||||||
|
if (!fs.existsSync(avifPath.src) && !fs.existsSync(webpPath.src)) {
|
||||||
|
setImageLoaded(true)
|
||||||
|
} else {
|
||||||
|
setImageLoaded(false)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default (props: Props) => {
|
||||||
|
checkBackground()
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Show when={props.image}>
|
||||||
|
<Show when={imageLoaded()}>
|
||||||
|
<picture class="fullscreen">
|
||||||
|
<source srcset={avifPath.src} type="image/avif" />
|
||||||
|
<source srcset={webpPath.src} type="image/webp" />
|
||||||
|
<source srcset={noBackground.src} type="image/webp" />
|
||||||
|
<img width="1920" height="auto" decoding="async" loading="lazy" alt="An image background" />
|
||||||
|
</picture>
|
||||||
|
</Show>
|
||||||
|
<Show when={!imageLoaded()}>
|
||||||
|
<picture class="fullscreen">
|
||||||
|
<source srcset={noBackground.src} type="image/webp" />
|
||||||
|
<img width="1920" height="auto" decoding="async" loading="lazy" alt="An alternative background if found no image background" />
|
||||||
|
</picture>
|
||||||
|
</Show>
|
||||||
|
</Show>
|
||||||
|
|
||||||
|
<Show when={!props.image}>
|
||||||
|
<div style={{ background: props.color }} class="fullscreen" />
|
||||||
|
</Show>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
19
@dasig/components/Box.tsx
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
import '../styles/Box.sass'
|
||||||
|
import { type JSXElement, createMemo } from 'solid-js'
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
thickness: number
|
||||||
|
color?: string
|
||||||
|
children: JSXElement
|
||||||
|
curved?: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export default (props: Props) => {
|
||||||
|
const boxClass = createMemo(() => (props.curved ? 'curvedbox' : 'box'))
|
||||||
|
|
||||||
|
return (
|
||||||
|
<section class={boxClass()} style={{ border: `${props.thickness}px solid ${props.color || 'white'}` }}>
|
||||||
|
{props.children}
|
||||||
|
</section>
|
||||||
|
)
|
||||||
|
}
|
||||||
83
@dasig/components/Button.tsx
Normal file
|
|
@ -0,0 +1,83 @@
|
||||||
|
import '../styles/Button.sass'
|
||||||
|
import { Show, Switch, Match } from 'solid-js'
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
label?: string
|
||||||
|
to?: string
|
||||||
|
onClick?: () => void
|
||||||
|
edges?: 'curved' | 'rounded' | 'flat'
|
||||||
|
design?: 'bu-primary' | 'bu-link' | 'bu-info' | 'bu-success' | 'bu-warning' | 'bu-danger' | 'bu-dark' | 'bu-light' | 'bu-text' | 'bu-ghost' | 'bo-primary' | 'bo-secondary' | 'bo-success' | 'bo-danger' | 'bo-warning' | 'bo-info' | 'bo-light' | 'bo-dark' | 'bo-link'
|
||||||
|
submit?: boolean
|
||||||
|
newtab?: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
const getBorderRadius = (edge: Props['edges']) => {
|
||||||
|
switch (edge) {
|
||||||
|
case 'curved':
|
||||||
|
return 'border-radius: 6px'
|
||||||
|
case 'rounded':
|
||||||
|
return 'border-radius: 32px'
|
||||||
|
case 'flat':
|
||||||
|
return 'border-radius: 0'
|
||||||
|
default:
|
||||||
|
return 'border-radius: 0'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default (props: Props) => {
|
||||||
|
const borderRadius = getBorderRadius(props.edges)
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Show when={props.to}>
|
||||||
|
<Switch>
|
||||||
|
<Match when={props.design}>
|
||||||
|
<a href={props.to} aria-label={props.label} rel="noopener" target={props.newtab ? '_blank' : '_self'} data-astro-prefetch>
|
||||||
|
<button class={props.design} style={borderRadius}>
|
||||||
|
{props.label || 'Click Me!'}
|
||||||
|
</button>
|
||||||
|
</a>
|
||||||
|
</Match>
|
||||||
|
<Match when={!props.design}>
|
||||||
|
<a href={props.to} aria-label={props.label} rel="noopener" target={props.newtab ? '_blank' : '_self'} data-astro-prefetch>
|
||||||
|
<button class="button" style={borderRadius}>
|
||||||
|
{props.label || 'Click Me!'}
|
||||||
|
</button>
|
||||||
|
</a>
|
||||||
|
</Match>
|
||||||
|
</Switch>
|
||||||
|
</Show>
|
||||||
|
|
||||||
|
<Show when={!props.to}>
|
||||||
|
<Switch>
|
||||||
|
<Match when={props.design}>
|
||||||
|
<Show when={props.submit}>
|
||||||
|
<button class={props.design} type="submit" style={borderRadius}>
|
||||||
|
{props.label || 'Click Me!'}
|
||||||
|
</button>
|
||||||
|
</Show>
|
||||||
|
|
||||||
|
<Show when={!props.submit}>
|
||||||
|
<button class={props.design} onClick={props.onClick} style={borderRadius}>
|
||||||
|
{props.label || 'Click Me!'}
|
||||||
|
</button>
|
||||||
|
</Show>
|
||||||
|
</Match>
|
||||||
|
<Match when={!props.design}>
|
||||||
|
<Show when={props.submit}>
|
||||||
|
<button class="button" type="submit" style={borderRadius}>
|
||||||
|
{props.label || 'Click Me!'}
|
||||||
|
</button>
|
||||||
|
</Show>
|
||||||
|
|
||||||
|
<Show when={!props.submit}>
|
||||||
|
<button class="button" onClick={props.onClick} style={borderRadius}>
|
||||||
|
{props.label || 'Click Me!'}
|
||||||
|
</button>
|
||||||
|
</Show>
|
||||||
|
</Match>
|
||||||
|
</Switch>
|
||||||
|
</Show>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
18
@dasig/components/Column.tsx
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
import '../styles/Column.sass'
|
||||||
|
import type { JSXElement } from 'solid-js'
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
children: JSXElement
|
||||||
|
content?: 'top' | 'center' | 'right' | 'split' | 'spaced'
|
||||||
|
gap?: number
|
||||||
|
}
|
||||||
|
|
||||||
|
export default (props: Props) => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<section class={`column-${props.content || 'center'}`} style={`gap: ${props.gap}rem`}>
|
||||||
|
{props.children}
|
||||||
|
</section>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
14
@dasig/components/Copyright.tsx
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
interface Props {
|
||||||
|
year: string
|
||||||
|
name: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export default (props: Props) => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<span>
|
||||||
|
Copyright © {props.year} {props.name} All Rights Reserved.
|
||||||
|
</span>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
41
@dasig/components/Display.tsx
Normal file
|
|
@ -0,0 +1,41 @@
|
||||||
|
import '../styles/Viewport.sass'
|
||||||
|
import { type JSXElement, Switch, Match } from 'solid-js'
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
children: JSXElement
|
||||||
|
desktop?: boolean
|
||||||
|
tablet?: boolean
|
||||||
|
mobile?: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export default (props: Props) => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Switch>
|
||||||
|
<Match when={props.desktop && !props.tablet && !props.mobile}>
|
||||||
|
<div class="on-desktop-only">{props.children}</div>
|
||||||
|
</Match>
|
||||||
|
|
||||||
|
<Match when={!props.desktop && props.tablet && !props.mobile}>
|
||||||
|
<div class="on-tablet-only">{props.children}</div>
|
||||||
|
</Match>
|
||||||
|
|
||||||
|
<Match when={!props.desktop && !props.tablet && props.mobile}>
|
||||||
|
<div class="on-mobile-only">{props.children}</div>
|
||||||
|
</Match>
|
||||||
|
|
||||||
|
<Match when={props.desktop && props.tablet && !props.mobile}>
|
||||||
|
<div class="on-desktop-tablet-only">{props.children}</div>
|
||||||
|
</Match>
|
||||||
|
|
||||||
|
<Match when={props.desktop && !props.tablet && props.mobile}>
|
||||||
|
<div class="on-desktop-mobile-only">{props.children}</div>
|
||||||
|
</Match>
|
||||||
|
|
||||||
|
<Match when={!props.desktop && props.tablet && props.mobile}>
|
||||||
|
<div class="on-tablet-mobile-only">{props.children}</div>
|
||||||
|
</Match>
|
||||||
|
</Switch>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
16
@dasig/components/Footer.tsx
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
import '../styles/Footer.sass'
|
||||||
|
import type { JSXElement } from 'solid-js'
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
children: JSXElement
|
||||||
|
}
|
||||||
|
|
||||||
|
export default (props: Props) => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<footer class="footer">
|
||||||
|
<small>{props.children}</small>
|
||||||
|
</footer>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
16
@dasig/components/Form.tsx
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
import '../styles/Form.sass'
|
||||||
|
import type { JSXElement } from 'solid-js'
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
children: JSXElement
|
||||||
|
}
|
||||||
|
|
||||||
|
export default (props: Props) => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<form method="post" enctype="application/x-www-form-urlencoded">
|
||||||
|
{props.children}
|
||||||
|
</form>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
46
@dasig/components/HTML.tsx
Normal file
|
|
@ -0,0 +1,46 @@
|
||||||
|
import '../styles/HTML.sass'
|
||||||
|
import { type JSXElement, Show } from 'solid-js'
|
||||||
|
import background1 from '../images/background.avif'
|
||||||
|
import background2 from '../images/background.webp'
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
title: string
|
||||||
|
name: string
|
||||||
|
description: string
|
||||||
|
children: JSXElement
|
||||||
|
font?: 'roboto' | 'inter' | 'montserrat' | 'open-sans' | 'public-sans'
|
||||||
|
preloadBackground?: boolean
|
||||||
|
author: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export default (props: Props) => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<base href="/" />
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
|
||||||
|
<meta name="name" content={props.name} />
|
||||||
|
<meta name="description" content={props.description} />
|
||||||
|
<meta name="title" property="og:title" content={props.name} />
|
||||||
|
<meta name="keywords" content="HTML, CSS, JavaScript" />
|
||||||
|
<meta name="author" content={props.author} />
|
||||||
|
<meta property="og:description" content={props.description} />
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
<link rel="icon" type="image/svg+xml" href="/favicon.png" />
|
||||||
|
<Show when={props.font}>
|
||||||
|
<link rel="preconnect" href="https://cdn.jsdelivr.net" />
|
||||||
|
</Show>
|
||||||
|
<Show when={props.preloadBackground}>
|
||||||
|
<link rel="preload" href={background1.src} as="image" type="image/svg+xml" />
|
||||||
|
<link rel="preload" href={background2.src} as="image" type="image/svg+xml" />
|
||||||
|
</Show>
|
||||||
|
<title>{props.title}</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class={props.font}>{props.children}</body>
|
||||||
|
</html>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
19
@dasig/components/Image.tsx
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
interface Props {
|
||||||
|
avif: string
|
||||||
|
webp: string
|
||||||
|
size?: number
|
||||||
|
alt?: string
|
||||||
|
radius?: number
|
||||||
|
}
|
||||||
|
|
||||||
|
export default (props: Props) => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<picture>
|
||||||
|
<source srcset={props.avif} type="image/avif" />
|
||||||
|
<source srcset={props.webp} type="image/webp" />
|
||||||
|
<img style={`border-radius: ${props.radius}rem`} width={props.size} height="auto" decoding="async" loading="lazy" alt={props.alt} />
|
||||||
|
</picture>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
27
@dasig/components/Input.tsx
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
import '../styles/Input.sass'
|
||||||
|
import { createSignal } from 'solid-js'
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
placeholder?: string
|
||||||
|
value?: string
|
||||||
|
onChange?: (value: string) => void
|
||||||
|
}
|
||||||
|
|
||||||
|
export default (props: Props) => {
|
||||||
|
const [inputValue, setInputValue] = createSignal(props.value || '')
|
||||||
|
|
||||||
|
const handleChange = (event: Event) => {
|
||||||
|
const target = event.target as HTMLInputElement
|
||||||
|
const newValue = target.value
|
||||||
|
setInputValue(newValue)
|
||||||
|
if (props.onChange) {
|
||||||
|
props.onChange(newValue)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<input class="input" type="text" placeholder={props.placeholder} value={inputValue()} onInput={handleChange} />
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
17
@dasig/components/Link.tsx
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
import '../styles/Link.sass'
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
to: string
|
||||||
|
children?: any
|
||||||
|
newtab?: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export default (props: Props) => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<a href={props.to} aria-label={`Go to ${props.to}`} rel="noopener" target={props.newtab ? '_blank' : '_self'} data-astro-prefetch>
|
||||||
|
{props.children}
|
||||||
|
</a>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
19
@dasig/components/Logo.tsx
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
import webpPath from '../images/logo.webp'
|
||||||
|
import avifPath from '../images/logo.avif'
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
size?: number
|
||||||
|
alt?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export default (props: Props) => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<picture>
|
||||||
|
<source srcset={avifPath.src} type="image/avif" />
|
||||||
|
<source srcset={webpPath.src} type="image/webp" />
|
||||||
|
<img width={props.size} height="auto" decoding="async" loading="lazy" alt="logo" />
|
||||||
|
</picture>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
27
@dasig/components/Modal.tsx
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
import '../styles/Modal.sass'
|
||||||
|
import { type JSXElement, Show, createSignal } from 'solid-js'
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
children: JSXElement
|
||||||
|
background?: string
|
||||||
|
color?: string
|
||||||
|
border?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export default (props: Props) => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Show when={props.border}>
|
||||||
|
<div class="modal__content" style={`background-color: ${props.background}; color: ${props.color}; border: 2px solid ${props.border}`}>
|
||||||
|
{props.children}
|
||||||
|
</div>
|
||||||
|
</Show>
|
||||||
|
|
||||||
|
<Show when={!props.border}>
|
||||||
|
<div class="modal__content" style={`background-color: ${props.background}; color: ${props.color}; box-shadow: 5px 4px 6px rgba(0, 0, 0, 0.5)`}>
|
||||||
|
{props.children}
|
||||||
|
</div>
|
||||||
|
</Show>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
17
@dasig/components/Navbar.tsx
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
import '../styles/Navbar.sass'
|
||||||
|
import Row from './Row'
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
transparent?: boolean
|
||||||
|
children: HTMLElement
|
||||||
|
}
|
||||||
|
|
||||||
|
export default (props: Props) => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<nav class="nav" role="navigation" aria-label="main navigation">
|
||||||
|
<Row content="split">{props.children}</Row>
|
||||||
|
</nav>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
13
@dasig/components/Padding.tsx
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
import { type JSXElement } from 'solid-js'
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
left: number
|
||||||
|
right: number
|
||||||
|
top?: number
|
||||||
|
bottom?: number
|
||||||
|
children: JSXElement
|
||||||
|
}
|
||||||
|
|
||||||
|
export default (props: Props) => {
|
||||||
|
return <div style={{ padding: `${props.top || 0}rem ${props.right}rem ${props.bottom || 0}rem ${props.left}rem` }}>{props.children}</div>
|
||||||
|
}
|
||||||
20
@dasig/components/Page.tsx
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
import '../styles/Page.sass'
|
||||||
|
import { Show } from 'solid-js'
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
children?: any
|
||||||
|
alignment?: 'row' | 'column'
|
||||||
|
}
|
||||||
|
|
||||||
|
export default (props: Props) => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Show when={props.alignment}>
|
||||||
|
<main class={props.alignment}>{props.children}</main>
|
||||||
|
</Show>
|
||||||
|
<Show when={!props.alignment}>
|
||||||
|
<main class="page">{props.children}</main>
|
||||||
|
</Show>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
24
@dasig/components/Row.tsx
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
import '../styles/Row.sass'
|
||||||
|
import { Show, type JSXElement } from 'solid-js'
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
children: JSXElement
|
||||||
|
content?: 'left' | 'center' | 'right' | 'split' | 'spaced' | 'even'
|
||||||
|
gap?: number
|
||||||
|
}
|
||||||
|
|
||||||
|
export default (props: Props) => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Show when={props.gap}>
|
||||||
|
<section class={`row-${props.content || 'center'}`} style={`gap: ${props.gap}rem`}>
|
||||||
|
{props.children}
|
||||||
|
</section>
|
||||||
|
</Show>
|
||||||
|
|
||||||
|
<Show when={!props.gap}>
|
||||||
|
<section class={`row-${props.content || 'center'}`}>{props.children}</section>
|
||||||
|
</Show>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
BIN
@dasig/images/background.avif
Normal file
|
After Width: | Height: | Size: 96 KiB |
BIN
@dasig/images/background.webp
Normal file
|
After Width: | Height: | Size: 140 KiB |
BIN
@dasig/images/logo.avif
Normal file
|
After Width: | Height: | Size: 4.3 KiB |
BIN
@dasig/images/logo.webp
Normal file
|
After Width: | Height: | Size: 5.6 KiB |
BIN
@dasig/images/no-background.webp
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
@dasig/images/pat-alcala.avif
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
@dasig/images/pat-alcala.webp
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
@dasig/images/sample.avif
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
@dasig/images/sample.webp
Normal file
|
After Width: | Height: | Size: 3.9 KiB |
21
@dasig/index.ts
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
export { default as Background } from './components/Background'
|
||||||
|
export { default as Box } from './components/Box'
|
||||||
|
export { default as Button } from './components/Button'
|
||||||
|
export { default as Column } from './components/Column'
|
||||||
|
export { default as Copyright } from './components/Copyright'
|
||||||
|
export { default as Footer } from './components/Footer'
|
||||||
|
export { default as Form } from './components/Form'
|
||||||
|
export { default as HTML } from './components/HTML'
|
||||||
|
export { default as Image } from './components/Image'
|
||||||
|
export { default as Link } from './components/Link'
|
||||||
|
export { default as Logo } from './components/Logo'
|
||||||
|
export { default as Navbar } from './components/Navbar'
|
||||||
|
export { default as Page } from './components/Page'
|
||||||
|
export { default as Row } from './components/Row'
|
||||||
|
export { default as Display } from './components/Display'
|
||||||
|
export { default as Padding } from './components/Padding'
|
||||||
|
export { default as Modal } from './components/Modal'
|
||||||
|
|
||||||
|
export { default as OptimizeBackground } from './Optimizers/OptimizeBackground'
|
||||||
|
export { default as OptimizeImage } from './Optimizers/OptimizeImage'
|
||||||
|
export { default as OptimizeLogo } from './Optimizers/OptimizeLogo'
|
||||||
17
@dasig/scripts/functions/encryptRsa.ts
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
import { JSEncrypt } from "jsencrypt";
|
||||||
|
import * as fs from "node:fs";
|
||||||
|
import * as toml from "toml";
|
||||||
|
|
||||||
|
const config = toml.parse(
|
||||||
|
fs.readFileSync("configs/config.security.toml", "utf-8"),
|
||||||
|
);
|
||||||
|
const enc = new JSEncrypt();
|
||||||
|
const PUBLIC_KEY = config.rsa.public_key;
|
||||||
|
|
||||||
|
export default (message: string) => {
|
||||||
|
enc.setPublicKey(PUBLIC_KEY);
|
||||||
|
const encrypted = enc.encrypt(message).toString();
|
||||||
|
const fixedEncrypted = encrypted.replace(/\//g, "~");
|
||||||
|
|
||||||
|
return fixedEncrypted;
|
||||||
|
};
|
||||||
1
@dasig/scripts/index.ts
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
export { default as encryptRsa } from "./functions/encryptRsa.ts";
|
||||||
110
@dasig/scripts/node/generateFavicon.ts
Normal file
|
|
@ -0,0 +1,110 @@
|
||||||
|
import { consola } from "consola";
|
||||||
|
import * as fs from "fs";
|
||||||
|
import * as path from "path";
|
||||||
|
import sharp from "sharp";
|
||||||
|
import * as toml from 'toml'
|
||||||
|
|
||||||
|
try {
|
||||||
|
const dirPath = path.resolve("./public");
|
||||||
|
const config = toml.parse(fs.readFileSync("configs/config.site.toml", "utf8"));
|
||||||
|
|
||||||
|
if (fs.existsSync(dirPath)) {
|
||||||
|
const inputSrc = "./src/assets/images/favicon.png";
|
||||||
|
const favicon = dirPath + "/favicon.png";
|
||||||
|
const chrome192 = dirPath + "/android-chrome-192x192.png";
|
||||||
|
const chrome512 = dirPath + "/android-chrome-512x512.png";
|
||||||
|
const apple = dirPath + "/apple-touch-icon.png";
|
||||||
|
const favicon16 = dirPath + "/favicon-16x16.png";
|
||||||
|
const favicon32 = dirPath + "/favicon-32x32.png";
|
||||||
|
|
||||||
|
const faviconBuffer = await sharp(inputSrc)
|
||||||
|
.png({ quality: 90 })
|
||||||
|
.resize(48)
|
||||||
|
.toBuffer();
|
||||||
|
await sharp(faviconBuffer).toFile(favicon);
|
||||||
|
consola.success("Favicon generated successfully");
|
||||||
|
|
||||||
|
const favicon32Buffer = await sharp(inputSrc)
|
||||||
|
.png({ quality: 90 })
|
||||||
|
.resize(32)
|
||||||
|
.toBuffer();
|
||||||
|
await sharp(favicon32Buffer).toFile(favicon32);
|
||||||
|
consola.success("Favicon-32x32 generated successfully");
|
||||||
|
|
||||||
|
const favicon16Buffer = await sharp(inputSrc)
|
||||||
|
.png({ quality: 90 })
|
||||||
|
.resize(16)
|
||||||
|
.toBuffer();
|
||||||
|
await sharp(favicon16Buffer).toFile(favicon16);
|
||||||
|
consola.success("Favicon-16x16 generated successfully");
|
||||||
|
|
||||||
|
const chrome512Buffer = await sharp(inputSrc)
|
||||||
|
.png({ quality: 90 })
|
||||||
|
.resize(512)
|
||||||
|
.toBuffer();
|
||||||
|
await sharp(chrome512Buffer).toFile(chrome512);
|
||||||
|
const chrome192Buffer = await sharp(inputSrc)
|
||||||
|
.png({ quality: 90 })
|
||||||
|
.resize(192)
|
||||||
|
.toBuffer();
|
||||||
|
await sharp(chrome192Buffer).toFile(chrome192);
|
||||||
|
consola.success("Android icon generated successfully");
|
||||||
|
|
||||||
|
const appleBuffer = await sharp(inputSrc)
|
||||||
|
.png({ quality: 90 })
|
||||||
|
.resize(180)
|
||||||
|
.toBuffer();
|
||||||
|
await sharp(appleBuffer).toFile(apple);
|
||||||
|
consola.success("iOS icon generated successfully");
|
||||||
|
|
||||||
|
const manifestPath = path.resolve(dirPath, "site.webmanifest");
|
||||||
|
const manifestContent = JSON.stringify(
|
||||||
|
{
|
||||||
|
name: config.website.name,
|
||||||
|
short_name: config.website.short_name,
|
||||||
|
start_url: "/",
|
||||||
|
display: "standalone",
|
||||||
|
background_color: "#ffffff",
|
||||||
|
theme_color: "#000000",
|
||||||
|
icons: [
|
||||||
|
{
|
||||||
|
src: "/android-chrome-192x192.png",
|
||||||
|
sizes: "192x192",
|
||||||
|
type: "image/png",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
src: "/android-chrome-512x512.png",
|
||||||
|
sizes: "512x512",
|
||||||
|
type: "image/png",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
src: "/apple-touch-icon.png",
|
||||||
|
sizes: "180x180",
|
||||||
|
type: "image/png",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
src: "/favicon-32x32.png",
|
||||||
|
sizes: "32x32",
|
||||||
|
type: "image/png",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
src: "/favicon-16x16.png",
|
||||||
|
sizes: "16x16",
|
||||||
|
type: "image/png",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
2,
|
||||||
|
);
|
||||||
|
|
||||||
|
fs.writeFileSync(manifestPath, manifestContent);
|
||||||
|
consola.success("Site Webmanifest file created successfully");
|
||||||
|
} else {
|
||||||
|
consola.error("Directory does not exist:", dirPath);
|
||||||
|
}
|
||||||
|
} catch (error: any) {
|
||||||
|
if (error.message.includes("missing")) {
|
||||||
|
consola.error("Source favicon does not exist");
|
||||||
|
}
|
||||||
|
}
|
||||||
50
@dasig/scripts/node/optimizeImage.ts
Normal file
|
|
@ -0,0 +1,50 @@
|
||||||
|
/** biome-ignore-all assist/source/organizeImports: <_> */
|
||||||
|
/** biome-ignore-all lint/suspicious/noExplicitAny: <_> */
|
||||||
|
|
||||||
|
import { consola } from "consola";
|
||||||
|
import process from "node:process";
|
||||||
|
import sharp from "sharp";
|
||||||
|
import yargs from "yargs";
|
||||||
|
import { hideBin } from "yargs/helpers";
|
||||||
|
|
||||||
|
(async () => {
|
||||||
|
const argv = yargs(hideBin(process.argv))
|
||||||
|
.option("name", {
|
||||||
|
alias: "n",
|
||||||
|
describe: "Specify the name of the image",
|
||||||
|
type: "string",
|
||||||
|
demandOption: true,
|
||||||
|
})
|
||||||
|
.option("size", {
|
||||||
|
alias: "s",
|
||||||
|
describe: "Specify the size of the image",
|
||||||
|
type: "number",
|
||||||
|
demandOption: true,
|
||||||
|
}).argv;
|
||||||
|
|
||||||
|
const name = argv.name;
|
||||||
|
const size = argv.size;
|
||||||
|
|
||||||
|
try {
|
||||||
|
const avifOutputPath = `./@dasig/images/${name.toString().split(".").slice(0, -1).join(".")}.avif`;
|
||||||
|
const webpOutputPath = `./@dasig/images/${name.toString().split(".").slice(0, -1).join(".")}.webp`;
|
||||||
|
|
||||||
|
const avifBuffer = await sharp(`./src/images/${name}`)
|
||||||
|
.avif({ quality: 60 })
|
||||||
|
.resize(size)
|
||||||
|
.toBuffer();
|
||||||
|
await sharp(avifBuffer).toFile(avifOutputPath);
|
||||||
|
consola.success(`${name} successfully optimized in Avif`);
|
||||||
|
|
||||||
|
const webpBuffer = await sharp(`./src/images/${name}`)
|
||||||
|
.webp({ quality: 75 })
|
||||||
|
.resize(size)
|
||||||
|
.toBuffer();
|
||||||
|
await sharp(webpBuffer).toFile(webpOutputPath);
|
||||||
|
consola.success(`${name} successfully optimized in Webp`);
|
||||||
|
} catch (error: any) {
|
||||||
|
consola.error("Error optimizing image:", error);
|
||||||
|
if (error.message.includes("missing"))
|
||||||
|
consola.error(`${name} could not be found on image folder`);
|
||||||
|
}
|
||||||
|
})();
|
||||||
36
@dasig/scripts/node/optimizeLogo.ts
Normal file
|
|
@ -0,0 +1,36 @@
|
||||||
|
import { consola } from "consola";
|
||||||
|
import process from "node:process";
|
||||||
|
import sharp from "sharp";
|
||||||
|
import yargs from "yargs";
|
||||||
|
import { hideBin } from "yargs/helpers";
|
||||||
|
|
||||||
|
(async () => {
|
||||||
|
const size = yargs(hideBin(process.argv)).option("size", {
|
||||||
|
alias: "s",
|
||||||
|
describe: "Specify the size of the logo",
|
||||||
|
type: "number",
|
||||||
|
demandOption: true,
|
||||||
|
}).argv.size;
|
||||||
|
|
||||||
|
try {
|
||||||
|
const webpImage = "./@dasig/images/logo.webp";
|
||||||
|
const avifImage = "./@dasig/images/logo.avif";
|
||||||
|
const inputSrc = "./src/images/logo.png";
|
||||||
|
|
||||||
|
const avifBuffer = await sharp(inputSrc)
|
||||||
|
.avif({ quality: 60 })
|
||||||
|
.resize(size)
|
||||||
|
.toBuffer();
|
||||||
|
await sharp(avifBuffer).toFile(avifImage);
|
||||||
|
consola.success("Logo successfully optimized in Avif");
|
||||||
|
|
||||||
|
const webpBuffer = await sharp(inputSrc)
|
||||||
|
.webp({ quality: 75 })
|
||||||
|
.resize(size)
|
||||||
|
.toBuffer();
|
||||||
|
await sharp(webpBuffer).toFile(webpImage);
|
||||||
|
consola.success("Logo successfully optimized in Webp");
|
||||||
|
} catch (error) {
|
||||||
|
consola.error("Error generating favicon:", error);
|
||||||
|
}
|
||||||
|
})();
|
||||||
1
@dasig/styles/Background.sass
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
@use '/src/styles/classes.sass'
|
||||||
6
@dasig/styles/Box.sass
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
.box
|
||||||
|
padding: 1rem
|
||||||
|
|
||||||
|
.curvedbox
|
||||||
|
@extend .box
|
||||||
|
border-radius: 8px
|
||||||
223
@dasig/styles/Button.sass
Normal file
|
|
@ -0,0 +1,223 @@
|
||||||
|
@use '/src/styles/variables.sass' as vars
|
||||||
|
@use '/src/styles/fonts.sass' as fonts
|
||||||
|
@use 'sass:color'
|
||||||
|
|
||||||
|
$bulmaPrimary: rgb(0, 235, 199)
|
||||||
|
$bulmaPrimaryText: rgb(0, 31, 26)
|
||||||
|
$bulmaLink: rgb(92, 111, 255)
|
||||||
|
$bulmaLinkText: rgb(245, 246, 255)
|
||||||
|
$bulmaInfo: rgb(128, 217, 255)
|
||||||
|
$bulmaInfoText: rgb(0, 36, 51)
|
||||||
|
$bulmaSuccess: rgb(91, 205, 154)
|
||||||
|
$bulmaSuccessText: rgb(10, 31, 21)
|
||||||
|
$bulmaWarning: rgb(255, 191, 41)
|
||||||
|
$bulmaWarningText: rgb(41, 29, 0)
|
||||||
|
$bulmaDanger: rgb(255, 128, 153)
|
||||||
|
$bulmaDangerText: rgb(26, 0, 5)
|
||||||
|
$bulmaLight: rgb(255, 255, 255)
|
||||||
|
$bulmaLightText: rgb(46, 51, 61)
|
||||||
|
$bulmaDark: rgb(57, 63, 76)
|
||||||
|
$bulmaDarkText: rgb(243, 244, 246)
|
||||||
|
$bulmaText: rgb(31, 34, 41)
|
||||||
|
$bulmaTextText: rgb(235, 236, 240)
|
||||||
|
$bulmaGhost: rgba(0,0,0,0)
|
||||||
|
$bulmaGhostText: rgb(66, 88, 255)
|
||||||
|
|
||||||
|
$bootstrapTextLight: rgb(255, 255, 253)
|
||||||
|
$bootstrapTextDark: rgb(0, 0, 2)
|
||||||
|
$bootstrapTextLink: rgb(139, 185, 254)
|
||||||
|
$bootstrapPrimary: rgb(13, 110, 253)
|
||||||
|
$bootstrapSecondary: rgb(92, 99, 106)
|
||||||
|
$bootstrapSuccess: rgb(21, 115, 71)
|
||||||
|
$bootstrapDanger: rgb(187, 45, 59)
|
||||||
|
$bootstrapWarning: rgb(255, 202, 44)
|
||||||
|
$bootstrapInfo: rgb(49, 210, 242)
|
||||||
|
$bootstrapLight: rgb(211, 212, 213)
|
||||||
|
$bootstrapDark: rgb(33, 37, 41)
|
||||||
|
|
||||||
|
.button
|
||||||
|
background-color: vars.$primaryColor
|
||||||
|
border: none
|
||||||
|
color: white
|
||||||
|
padding: 0.5rem 1.25rem
|
||||||
|
text-align: center
|
||||||
|
text-decoration: none
|
||||||
|
display: inline-block
|
||||||
|
font-size: 1rem
|
||||||
|
font-weight: 500
|
||||||
|
cursor: pointer
|
||||||
|
transition: all 0.2s ease-out
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
background-color: color.adjust(vars.$primaryColor, $blackness: 20%)
|
||||||
|
|
||||||
|
&:active
|
||||||
|
transform: scale(0.95)
|
||||||
|
|
||||||
|
.bu-primary
|
||||||
|
@extend .button
|
||||||
|
font-family: fonts.$Inter
|
||||||
|
background-color: $bulmaPrimary
|
||||||
|
color: $bulmaPrimaryText
|
||||||
|
border: none
|
||||||
|
font-size: 1rem
|
||||||
|
border-radius: 0.375rem
|
||||||
|
font-weight: 500
|
||||||
|
padding: 0.5rem 1.25rem
|
||||||
|
height: 2.5rem
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
background-color: color.adjust($bulmaPrimary, $lightness: 10%)
|
||||||
|
|
||||||
|
.bu-link
|
||||||
|
@extend .bu-primary
|
||||||
|
background-color: $bulmaLink
|
||||||
|
color: $bulmaLinkText
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
background-color: color.adjust($bulmaLink, $lightness: 5%)
|
||||||
|
|
||||||
|
.bu-info
|
||||||
|
@extend .bu-primary
|
||||||
|
background-color: $bulmaInfo
|
||||||
|
color: $bulmaInfoText
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
background-color: color.adjust($bulmaInfo, $lightness: 5%)
|
||||||
|
|
||||||
|
.bu-success
|
||||||
|
@extend .bu-primary
|
||||||
|
background-color: $bulmaSuccess
|
||||||
|
color: $bulmaSuccessText
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
background-color: color.adjust($bulmaSuccess, $lightness: 5%)
|
||||||
|
|
||||||
|
.bu-warning
|
||||||
|
@extend .bu-primary
|
||||||
|
background-color: $bulmaWarning
|
||||||
|
color: $bulmaWarningText
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
background-color: color.adjust($bulmaWarning, $lightness: 5%)
|
||||||
|
|
||||||
|
.bu-danger
|
||||||
|
@extend .bu-primary
|
||||||
|
background-color: $bulmaDanger
|
||||||
|
color: $bulmaDangerText
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
background-color: color.adjust($bulmaDanger, $lightness: 5%)
|
||||||
|
|
||||||
|
.bu-light
|
||||||
|
@extend .bu-primary
|
||||||
|
background-color: $bulmaLight
|
||||||
|
color: $bulmaLightText
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
background-color: color.adjust($bulmaLight, $lightness: 5%)
|
||||||
|
|
||||||
|
.bu-dark
|
||||||
|
@extend .bu-primary
|
||||||
|
background-color: $bulmaDark
|
||||||
|
color: $bulmaDarkText
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
background-color: color.adjust($bulmaDark, $lightness: 5%)
|
||||||
|
|
||||||
|
.bu-text
|
||||||
|
@extend .bu-primary
|
||||||
|
background-color: rgba(0,0,0,0)
|
||||||
|
color: $bulmaTextText
|
||||||
|
text-decoration: underline
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
background-color: hsl(221,14%,14%)
|
||||||
|
|
||||||
|
.bu-ghost
|
||||||
|
@extend .bu-primary
|
||||||
|
background-color: $bulmaGhost
|
||||||
|
color: $bulmaGhostText
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
background-color: transparent
|
||||||
|
text-decoration: underline
|
||||||
|
|
||||||
|
.bo-primary
|
||||||
|
@extend .button
|
||||||
|
font-family: 'Segoe UI', fonts.$Roboto
|
||||||
|
background-color: $bootstrapPrimary
|
||||||
|
color: $bootstrapTextLight
|
||||||
|
border: none
|
||||||
|
font-size: 1rem
|
||||||
|
border-radius: 0.375rem
|
||||||
|
font-weight: 400
|
||||||
|
padding: 0.5rem 1.25rem
|
||||||
|
height: 2.5rem
|
||||||
|
margin: 0.25rem 0.125rem
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
background-color: color.adjust($bootstrapPrimary, $blackness: 10%)
|
||||||
|
|
||||||
|
.bo-secondary
|
||||||
|
@extend .bo-primary
|
||||||
|
background-color: $bootstrapSecondary
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
background-color: color.adjust($bootstrapSecondary, $blackness: 10%)
|
||||||
|
|
||||||
|
.bo-success
|
||||||
|
@extend .bo-primary
|
||||||
|
background-color: $bootstrapSuccess
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
background-color: color.adjust($bootstrapSuccess, $blackness: 10%)
|
||||||
|
|
||||||
|
.bo-danger
|
||||||
|
@extend .bo-primary
|
||||||
|
background-color: $bootstrapDanger
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
background-color: color.adjust($bootstrapDanger, $blackness: 10%)
|
||||||
|
|
||||||
|
.bo-warning
|
||||||
|
@extend .bo-primary
|
||||||
|
background-color: $bootstrapWarning
|
||||||
|
color: $bootstrapTextDark
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
background-color: color.adjust($bootstrapWarning, $lightness: 5%)
|
||||||
|
|
||||||
|
.bo-info
|
||||||
|
@extend .bo-primary
|
||||||
|
background-color: $bootstrapInfo
|
||||||
|
color: $bootstrapTextDark
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
background-color: color.adjust($bootstrapInfo, $lightness: 5%)
|
||||||
|
|
||||||
|
.bo-light
|
||||||
|
@extend .bo-primary
|
||||||
|
background-color: $bootstrapLight
|
||||||
|
color: $bootstrapTextDark
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
background-color: color.adjust($bootstrapLight, $blackness: 10%)
|
||||||
|
|
||||||
|
.bo-dark
|
||||||
|
@extend .bo-primary
|
||||||
|
background-color: $bootstrapDark
|
||||||
|
// color: $bootstrapTextDark
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
background-color: color.adjust($bootstrapDark, $lightness: 10%)
|
||||||
|
|
||||||
|
.bo-link
|
||||||
|
@extend .bo-primary
|
||||||
|
background-color: transparent
|
||||||
|
color: $bootstrapTextLink
|
||||||
|
text-decoration: underline
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
color: color.adjust($bootstrapTextLink, $lightness: 5%)
|
||||||
|
background-color: transparent
|
||||||
39
@dasig/styles/Column.sass
Normal file
|
|
@ -0,0 +1,39 @@
|
||||||
|
.column-top
|
||||||
|
display: flex
|
||||||
|
flex-direction: column
|
||||||
|
flex-wrap: wrap
|
||||||
|
justify-content: flex-start
|
||||||
|
align-items: center
|
||||||
|
align-content: center
|
||||||
|
|
||||||
|
.column-center
|
||||||
|
display: flex
|
||||||
|
flex-direction: column
|
||||||
|
flex-wrap: wrap
|
||||||
|
justify-content: center
|
||||||
|
align-items: center
|
||||||
|
align-content: center
|
||||||
|
|
||||||
|
.column-right
|
||||||
|
display: flex
|
||||||
|
flex-direction: column
|
||||||
|
flex-wrap: wrap
|
||||||
|
justify-content: flex-end
|
||||||
|
align-items: center
|
||||||
|
align-content: center
|
||||||
|
|
||||||
|
.column-split
|
||||||
|
display: flex
|
||||||
|
flex-direction: column
|
||||||
|
flex-wrap: wrap
|
||||||
|
justify-content: space-between
|
||||||
|
align-items: center
|
||||||
|
align-content: center
|
||||||
|
|
||||||
|
.column-spaced
|
||||||
|
display: flex
|
||||||
|
flex-direction: column
|
||||||
|
flex-wrap: wrap
|
||||||
|
justify-content: space-around
|
||||||
|
align-items: center
|
||||||
|
align-content: center
|
||||||
13
@dasig/styles/Footer.sass
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
@use '/src/styles/breakpoint.sass' as view
|
||||||
|
|
||||||
|
.footer
|
||||||
|
padding: 1rem 0
|
||||||
|
margin: 0 2rem
|
||||||
|
position: fixed
|
||||||
|
bottom: 0
|
||||||
|
width: 100%
|
||||||
|
opacity: 0.8
|
||||||
|
font-size: 1rem
|
||||||
|
|
||||||
|
@media only screen and (max-width: view.$tablet)
|
||||||
|
font-size: 0.75rem
|
||||||
0
@dasig/styles/Form.sass
Normal file
25
@dasig/styles/HTML.sass
Normal file
|
|
@ -0,0 +1,25 @@
|
||||||
|
@use '/src/styles/variables.sass' as vars
|
||||||
|
@use '/src/styles/fonts.sass' as fonts
|
||||||
|
|
||||||
|
.body
|
||||||
|
color: vars.$textColor
|
||||||
|
|
||||||
|
.inter
|
||||||
|
@extend .body
|
||||||
|
font-family: fonts.$Inter
|
||||||
|
|
||||||
|
.roboto
|
||||||
|
@extend .body
|
||||||
|
font-family: fonts.$Roboto
|
||||||
|
|
||||||
|
.montserrat
|
||||||
|
@extend .body
|
||||||
|
font-family: fonts.$Montserrat
|
||||||
|
|
||||||
|
.open-sans
|
||||||
|
@extend .body
|
||||||
|
font-family: fonts.$OpenSans
|
||||||
|
|
||||||
|
.public-sans
|
||||||
|
@extend .body
|
||||||
|
font-family: fonts.$PublicSans
|
||||||
27
@dasig/styles/Input.sass
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
.input
|
||||||
|
font-size: 1rem
|
||||||
|
padding: 0.5rem 1rem
|
||||||
|
width: 100%
|
||||||
|
border: 2px solid #ccc
|
||||||
|
border-radius: 4px
|
||||||
|
outline: none
|
||||||
|
transition: border-color 0.3s, box-shadow 0.3s
|
||||||
|
|
||||||
|
&:focus
|
||||||
|
border-color: #3377AC
|
||||||
|
box-shadow: 0 0 5px rgba(51, 119, 168, 0.3)
|
||||||
|
|
||||||
|
&::placeholder
|
||||||
|
color: #888
|
||||||
|
font-style: italic
|
||||||
|
|
||||||
|
&:disabled
|
||||||
|
background-color: #f0f0f0
|
||||||
|
border-color: #ddd
|
||||||
|
|
||||||
|
&--error
|
||||||
|
border-color: #ff4d4f
|
||||||
|
box-shadow: 0 0 5px rgba(255, 77, 79, 0.3)
|
||||||
|
|
||||||
|
&:focus
|
||||||
|
border-color: #e81123
|
||||||
3
@dasig/styles/Link.sass
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
a
|
||||||
|
text-decoration: none
|
||||||
|
color: inherit
|
||||||
20
@dasig/styles/Modal.sass
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
@use '/src/styles/variables.sass' as vars
|
||||||
|
@use 'sass:color'
|
||||||
|
|
||||||
|
.modal
|
||||||
|
display: flex
|
||||||
|
justify-content: center
|
||||||
|
align-items: center
|
||||||
|
position: fixed
|
||||||
|
top: 0
|
||||||
|
left: 0
|
||||||
|
width: 100%
|
||||||
|
height: 100%
|
||||||
|
backdrop-filter: blur(20px)
|
||||||
|
background-color: rgba(color.adjust(vars.$background, $blackness: 5%), 0.6)
|
||||||
|
z-index: 999
|
||||||
|
|
||||||
|
&__content
|
||||||
|
border-radius: 8px
|
||||||
|
padding: 2rem
|
||||||
|
position: relative
|
||||||
7
@dasig/styles/Navbar.sass
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
.nav
|
||||||
|
position: fixed
|
||||||
|
top: 0
|
||||||
|
width: 100%
|
||||||
|
padding: 1rem 0
|
||||||
|
// margin: 5rem
|
||||||
|
|
||||||
13
@dasig/styles/Page.sass
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
.page
|
||||||
|
margin: 2rem
|
||||||
|
height: auto
|
||||||
|
min-height: 90vh
|
||||||
|
|
||||||
|
.column
|
||||||
|
@extend .page
|
||||||
|
display: flex
|
||||||
|
flex-direction: column
|
||||||
|
|
||||||
|
.row
|
||||||
|
@extend .column
|
||||||
|
flex-direction: row
|
||||||
47
@dasig/styles/Row.sass
Normal file
|
|
@ -0,0 +1,47 @@
|
||||||
|
.row-left
|
||||||
|
display: flex
|
||||||
|
flex-direction: row
|
||||||
|
flex-wrap: wrap
|
||||||
|
justify-content: flex-start
|
||||||
|
align-items: center
|
||||||
|
align-content: center
|
||||||
|
|
||||||
|
.row-center
|
||||||
|
display: flex
|
||||||
|
flex-direction: row
|
||||||
|
flex-wrap: wrap
|
||||||
|
justify-content: center
|
||||||
|
align-items: center
|
||||||
|
align-content: center
|
||||||
|
|
||||||
|
.row-right
|
||||||
|
display: flex
|
||||||
|
flex-direction: row
|
||||||
|
flex-wrap: wrap
|
||||||
|
justify-content: flex-end
|
||||||
|
align-items: center
|
||||||
|
align-content: center
|
||||||
|
|
||||||
|
.row-split
|
||||||
|
display: flex
|
||||||
|
flex-direction: row
|
||||||
|
flex-wrap: wrap
|
||||||
|
justify-content: space-between
|
||||||
|
align-items: center
|
||||||
|
align-content: center
|
||||||
|
|
||||||
|
.row-spaced
|
||||||
|
display: flex
|
||||||
|
flex-direction: row
|
||||||
|
flex-wrap: wrap
|
||||||
|
justify-content: space-around
|
||||||
|
align-items: center
|
||||||
|
align-content: center
|
||||||
|
|
||||||
|
.row-even
|
||||||
|
display: flex
|
||||||
|
flex-direction: row
|
||||||
|
flex-wrap: wrap
|
||||||
|
justify-content: space-evenly
|
||||||
|
align-items: center
|
||||||
|
align-content: center
|
||||||
1
@dasig/styles/Viewport.sass
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
@use '/src/styles/breakpoint.sass'
|
||||||
12
Dockerfile
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
FROM node:22-alpine AS build
|
||||||
|
WORKDIR /app
|
||||||
|
COPY package*.json ./
|
||||||
|
RUN corepack enable
|
||||||
|
RUN pnpm install
|
||||||
|
COPY . .
|
||||||
|
RUN pnpm build
|
||||||
|
|
||||||
|
FROM nginx:alpine AS runtime
|
||||||
|
COPY ./nginx/nginx.conf /etc/nginx/nginx.conf
|
||||||
|
COPY --from=build /app/dist /usr/share/nginx/html
|
||||||
|
EXPOSE 4321
|
||||||
28
Makefile
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
.SILENT:
|
||||||
|
|
||||||
|
install:
|
||||||
|
pnpm install
|
||||||
|
|
||||||
|
dev:
|
||||||
|
pnpm dev
|
||||||
|
|
||||||
|
build:
|
||||||
|
pnpm build
|
||||||
|
|
||||||
|
update:
|
||||||
|
pnpm update -i
|
||||||
|
|
||||||
|
docker:
|
||||||
|
docker compose up -d
|
||||||
|
|
||||||
|
podman:
|
||||||
|
podman-compose up -d
|
||||||
|
|
||||||
|
favicon:
|
||||||
|
node ./@dasig/scripts/node/generateFavicon.ts
|
||||||
|
|
||||||
|
logo:
|
||||||
|
node ./@dasig/scripts/node/optimizeLogo.ts --size $(size)
|
||||||
|
|
||||||
|
image:
|
||||||
|
node ./@dasig/scripts/node/optimizeImage.ts --name $(name) --size $(size)
|
||||||
100
README.md
Normal file
|
|
@ -0,0 +1,100 @@
|
||||||
|

|
||||||
|
|
||||||
|
# Fast WebApp Template
|
||||||
|
|
||||||
|
## How to Use
|
||||||
|
|
||||||
|
#### Clone the Repo
|
||||||
|
|
||||||
|
```
|
||||||
|
git clone --depth 1 https://git.patalcala.com/patalcala9/fwt.git <project-name>
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Navigate to the project
|
||||||
|
|
||||||
|
```
|
||||||
|
cd <project-name>
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Refresh GIT
|
||||||
|
|
||||||
|
```
|
||||||
|
sudo rm -rf .git
|
||||||
|
git init
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Install Depedencies
|
||||||
|
|
||||||
|
```
|
||||||
|
pnpm install
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Make sure to update the dependencies first
|
||||||
|
|
||||||
|
```
|
||||||
|
pnpm update
|
||||||
|
```
|
||||||
|
|
||||||
|
## To Use Background
|
||||||
|
|
||||||
|
Place your background image in `assets/images/background.avif` or `assets/images/background.webp`.
|
||||||
|
|
||||||
|
Then, enable by adding `<Background image />` or `<Background color="#123456">`
|
||||||
|
|
||||||
|
## How to Run
|
||||||
|
|
||||||
|
```
|
||||||
|
pnpm dev
|
||||||
|
```
|
||||||
|
|
||||||
|
## How to Deploy
|
||||||
|
|
||||||
|
### Standard
|
||||||
|
|
||||||
|
```
|
||||||
|
pnpm build
|
||||||
|
```
|
||||||
|
|
||||||
|
### Docker
|
||||||
|
|
||||||
|
#### Edit name and port on docker-compose.yml
|
||||||
|
|
||||||
|
```
|
||||||
|
sudo vim docker-compose.yml
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Run Docker Compose
|
||||||
|
|
||||||
|
```
|
||||||
|
docker compose up -d
|
||||||
|
```
|
||||||
|
|
||||||
|
### Podman
|
||||||
|
|
||||||
|
#### Run Podman Compose
|
||||||
|
|
||||||
|
```
|
||||||
|
podman-compose up -d
|
||||||
|
```
|
||||||
|
|
||||||
|
### Podman Quadlet
|
||||||
|
|
||||||
|
#### Edit Quadlet Container
|
||||||
|
|
||||||
|
```
|
||||||
|
sudo vim quadlet/quadlet.container
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Copy and Rename the Quadlet to proper directory
|
||||||
|
|
||||||
|
```
|
||||||
|
mkdir -p ~/.config/containers/systemd/
|
||||||
|
sudo cp quadlet/quadlet.container ~/.config/containers/systemd/<name>.container
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Start at Systemd
|
||||||
|
|
||||||
|
```
|
||||||
|
systemctl --user daemon-reload
|
||||||
|
systemctl --user start <name>
|
||||||
|
```
|
||||||
26
astro.config.mjs
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
// @ts-check
|
||||||
|
import { defineConfig } from 'astro/config'
|
||||||
|
import solidJs from '@astrojs/solid-js'
|
||||||
|
import compressor from 'astro-compressor'
|
||||||
|
import robotsTxt from '@itsmatteomanf/astro-robots-txt'
|
||||||
|
import purgecss from 'astro-purgecss'
|
||||||
|
|
||||||
|
|
||||||
|
export default defineConfig({
|
||||||
|
prefetch: true,
|
||||||
|
integrations: [solidJs(),
|
||||||
|
compressor({ gzip: false, brotli: true }), robotsTxt(), purgecss({
|
||||||
|
fontFace: true,
|
||||||
|
variables: true,
|
||||||
|
}) ],
|
||||||
|
vite: {
|
||||||
|
css: {
|
||||||
|
transformer: 'lightningcss',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
build: {
|
||||||
|
assets: '_dasig',
|
||||||
|
inlineStylesheets: 'never',
|
||||||
|
},
|
||||||
|
site: 'http://localhost:4321',
|
||||||
|
})
|
||||||
6
configs/config.api.toml
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
[backend]
|
||||||
|
url = "http://localhost:8080"
|
||||||
|
|
||||||
|
[request]
|
||||||
|
retries = 3
|
||||||
|
retry_codes = [400, 404, 405, 500, 502]
|
||||||
22
configs/config.security.toml
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
[token]
|
||||||
|
name = "dasig" # output: dasig-token
|
||||||
|
encryption = "rsa"
|
||||||
|
expiration = 9 # seconds
|
||||||
|
|
||||||
|
[rsa]
|
||||||
|
public_key = '''
|
||||||
|
-----BEGIN PUBLIC KEY-----
|
||||||
|
MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA9Aw5Zasdanf2biS69qoQ
|
||||||
|
/YZbyIM+LS7LOLNN3ot6nZH1FiTqTNy61ffUA2Y/s3hGz9L0+k6gRu7uGBza6XPU
|
||||||
|
+iuGdXxZd2mc3lrnPfR6SSllMwGlAVkYpQhmkB19igd8aLUbFiJ3pPKkNocv/yQa
|
||||||
|
ERQ2tXtSxAoEQ9hg4wPgXkuW5PF+yEk9/+eN6tB36lHu9Im44GG18xKkU+VcdsXc
|
||||||
|
DJVgEpcr1FtJL6uLI+VXc4peZmOdsBN7/MS3Rjb2Ib9TrOADE5qodSc+T8D6GoGH
|
||||||
|
MOWQGKY6dmfo9cnY3tJ23FfKy9jFOIIrTIdz2ncRaOfxX1oIiTVy4pGG+GxZn5aQ
|
||||||
|
z+IW8hmSj/oOcrGKr6T6lmKxxxYqBWgvQWef0O0anGfa2y5CTpqdPQ8KEoF2zxPD
|
||||||
|
EnvcIQiCUmXwML4x18XItY/d60nEn/pxn7a9J9hb3Lxjy94ZXuOgHvqL3XRC9xg+
|
||||||
|
HvEuAHzUBr+GJM9w4/LF1mQSsmblB8q5S7qNaminYAw6wm35lRy7ZlIbJQlj/EyL
|
||||||
|
lCKWBbUEHkjzRFCoun9VVUc0guQTsTbchPD7Rgzg3SBK3Gws39n12WQPc7jKto0H
|
||||||
|
N39sJnNzllXw41gKRy9b2uYuaVYaQ0sjrFJ8ITuyO9NDDaEdeBqBBTtbRp2i0O4K
|
||||||
|
tvT2kItEEnVzjNutUatVOWcCAwEAAQ==
|
||||||
|
-----END PUBLIC KEY-----
|
||||||
|
'''
|
||||||
13
configs/config.site.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
[website]
|
||||||
|
name = "Dasig"
|
||||||
|
short_name = "Dasig"
|
||||||
|
description = "An architectural framework for pure speed fullstack development"
|
||||||
|
|
||||||
|
[font]
|
||||||
|
name = "inter"
|
||||||
|
source = "cdn" # cdn or local
|
||||||
|
|
||||||
|
[copyright]
|
||||||
|
name = "Pat Alcala"
|
||||||
|
year = 2025
|
||||||
|
color = "#ffffffff"
|
||||||
0
configs/design.components.sass
Normal file
6
configs/design.site.sass
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
$light-background: #e2e7f2
|
||||||
|
$dark-background: #0a152a
|
||||||
|
|
||||||
|
$mobile: 575.98px
|
||||||
|
$tablet: 768px
|
||||||
|
$desktop: 1440px
|
||||||
9
docker-compose.yml
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
services:
|
||||||
|
template:
|
||||||
|
container_name: template
|
||||||
|
restart: unless-stopped
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
ports:
|
||||||
|
- 4321:4321
|
||||||
31
nginx/nginx.conf
Normal file
|
|
@ -0,0 +1,31 @@
|
||||||
|
worker_processes 1;
|
||||||
|
|
||||||
|
events {
|
||||||
|
worker_connections 1024;
|
||||||
|
}
|
||||||
|
|
||||||
|
http {
|
||||||
|
server {
|
||||||
|
listen 8080;
|
||||||
|
server_name _;
|
||||||
|
|
||||||
|
root /usr/share/nginx/html;
|
||||||
|
index index.html index.htm;
|
||||||
|
include /etc/nginx/mime.types;
|
||||||
|
|
||||||
|
gzip on;
|
||||||
|
gzip_min_length 1000;
|
||||||
|
gzip_proxied expired no-cache no-store private auth;
|
||||||
|
gzip_types text/plain text/css application/json application/javascript application/x-javascript text/xml application/xml application/xml+rss text/javascript;
|
||||||
|
|
||||||
|
error_page 404 /404.html;
|
||||||
|
location = /404.html {
|
||||||
|
root /usr/share/nginx/html;
|
||||||
|
internal;
|
||||||
|
}
|
||||||
|
|
||||||
|
location / {
|
||||||
|
try_files $uri $uri/index.html =404;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
29
package.json
Normal file
|
|
@ -0,0 +1,29 @@
|
||||||
|
{
|
||||||
|
"name": "dasig-astro",
|
||||||
|
"type": "module",
|
||||||
|
"version": "0.0.1",
|
||||||
|
"scripts": {
|
||||||
|
"dev": "astro dev",
|
||||||
|
"build": "astro build"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@astrojs/solid-js": "^5.1.3",
|
||||||
|
"@itsmatteomanf/astro-robots-txt": "^0.2.0",
|
||||||
|
"astro": "^5.13.8",
|
||||||
|
"astro-compressor": "^1.1.2",
|
||||||
|
"astro-purgecss": "^5.3.0",
|
||||||
|
"consola": "^3.4.2",
|
||||||
|
"gsap": "^3.13.0",
|
||||||
|
"lightningcss": "^1.30.1",
|
||||||
|
"nanostores": "^1.0.1",
|
||||||
|
"purgecss": "^7.0.2",
|
||||||
|
"sharp": "^0.34.4",
|
||||||
|
"solid-icons": "^1.1.0",
|
||||||
|
"solid-js": "^1.9.11",
|
||||||
|
"toml": "^3.0.0"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@types/node": "^24.5.2",
|
||||||
|
"sass-embedded": "^1.92.1"
|
||||||
|
}
|
||||||
|
}
|
||||||
4569
pnpm-lock.yaml
generated
Normal file
13
podman.container
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
[Unit]
|
||||||
|
Description=FWT
|
||||||
|
|
||||||
|
[Container]
|
||||||
|
ContainerName=fwt
|
||||||
|
Image=localhost/fwt
|
||||||
|
PublishPort=8080:8080
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Restart=always
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target default.target
|
||||||
BIN
public/android-chrome-192x192.png
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
BIN
public/android-chrome-512x512.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
public/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
BIN
public/favicon-16x16.png
Normal file
|
After Width: | Height: | Size: 373 B |
BIN
public/favicon-32x32.png
Normal file
|
After Width: | Height: | Size: 888 B |
BIN
public/favicon.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
35
public/site.webmanifest
Normal file
|
|
@ -0,0 +1,35 @@
|
||||||
|
{
|
||||||
|
"name": "Dasig",
|
||||||
|
"short_name": "Dasig",
|
||||||
|
"start_url": "/",
|
||||||
|
"display": "standalone",
|
||||||
|
"background_color": "#ffffff",
|
||||||
|
"theme_color": "#000000",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "/android-chrome-192x192.png",
|
||||||
|
"sizes": "192x192",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/android-chrome-512x512.png",
|
||||||
|
"sizes": "512x512",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/apple-touch-icon.png",
|
||||||
|
"sizes": "180x180",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/favicon-32x32.png",
|
||||||
|
"sizes": "32x32",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/favicon-16x16.png",
|
||||||
|
"sizes": "16x16",
|
||||||
|
"type": "image/png"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
47
src/components/Counter/Counter.sass
Normal file
|
|
@ -0,0 +1,47 @@
|
||||||
|
.counter
|
||||||
|
display: flex
|
||||||
|
flex-direction: column
|
||||||
|
align-items: center
|
||||||
|
gap: 1rem
|
||||||
|
margin: 2rem
|
||||||
|
color: white
|
||||||
|
border: 1px solid rgba(22, 34, 60, 0.5)
|
||||||
|
padding: 1rem 2rem
|
||||||
|
border-radius: 16px
|
||||||
|
background: rgba(134, 152, 217, 0.1)
|
||||||
|
|
||||||
|
&__display
|
||||||
|
font-size: 1.75rem
|
||||||
|
font-weight: bold
|
||||||
|
|
||||||
|
&__buttons
|
||||||
|
display: flex
|
||||||
|
justify-content: center
|
||||||
|
gap: 0.25rem
|
||||||
|
|
||||||
|
// &:hover
|
||||||
|
// background: color.adjust(vars.$primaryColor, $blackness: 20%)
|
||||||
|
|
||||||
|
|
||||||
|
&__decrement
|
||||||
|
width: 2rem
|
||||||
|
height: 2.25rem
|
||||||
|
padding: auto
|
||||||
|
font-size: 1rem
|
||||||
|
font-weight: bold
|
||||||
|
cursor: pointer
|
||||||
|
text-decoration: none
|
||||||
|
background-color: rgba(86, 14, 14, 0.915)
|
||||||
|
border-radius: 8px
|
||||||
|
color: white
|
||||||
|
border: 1px solid rgba(255,255,255,0.2)
|
||||||
|
|
||||||
|
&:active
|
||||||
|
transform: scale(0.95)
|
||||||
|
|
||||||
|
&__increment
|
||||||
|
@extend .counter__decrement
|
||||||
|
background-color: rgb(14, 42, 86, 0.915)
|
||||||
|
|
||||||
|
&:active
|
||||||
|
transform: scale(0.95)
|
||||||
30
src/components/Counter/Counter.tsx
Normal file
|
|
@ -0,0 +1,30 @@
|
||||||
|
import './Counter.sass'
|
||||||
|
import { createSignal } from 'solid-js'
|
||||||
|
|
||||||
|
let [count, setCount] = createSignal(0)
|
||||||
|
|
||||||
|
const increment = () => {
|
||||||
|
setCount(count() + 1)
|
||||||
|
}
|
||||||
|
|
||||||
|
const decrement = () => {
|
||||||
|
setCount(count() - 1)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default () => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<section class="counter">
|
||||||
|
<div class="counter__display">{count()}</div>
|
||||||
|
<div class="counter__buttons">
|
||||||
|
<button class="counter__decrement" onClick={decrement}>
|
||||||
|
-
|
||||||
|
</button>
|
||||||
|
<button class="counter__increment" onClick={increment}>
|
||||||
|
+
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
12
src/components/Input/Input.tsx
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
import Input from '../../../@dasig/components/Input'
|
||||||
|
import { createSignal } from 'solid-js'
|
||||||
|
|
||||||
|
const [sample, setSample] = createSignal('')
|
||||||
|
|
||||||
|
export default () => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Input onChange={(val) => setSample(val)}></Input>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
13
src/layouts/Layout.astro
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
---
|
||||||
|
const { title } = Astro.props
|
||||||
|
|
||||||
|
const websiteName = 'Template'
|
||||||
|
const websiteDescription = 'This is just a template.'
|
||||||
|
|
||||||
|
import { Background, HTML } from '../../@dasig'
|
||||||
|
---
|
||||||
|
|
||||||
|
<HTML title={title} name={websiteName} description={websiteDescription} font="inter" author="Patrick Alvin Alcala">
|
||||||
|
<Background color="#0c1b31" />
|
||||||
|
<slot />
|
||||||
|
</HTML>
|
||||||
30
src/pages/index.astro
Normal file
|
|
@ -0,0 +1,30 @@
|
||||||
|
---
|
||||||
|
import Layout from '../layouts/Layout.astro'
|
||||||
|
import { Logo, Page, Footer, Row, Image, Copyright, Column } from '../../@dasig'
|
||||||
|
import Counter from '../components/Counter/Counter'
|
||||||
|
import PA1 from '../../@dasig/images/pat-alcala.avif'
|
||||||
|
import PA2 from '../../@dasig/images/pat-alcala.webp'
|
||||||
|
---
|
||||||
|
|
||||||
|
<Layout title="Dasig - Astro">
|
||||||
|
<Page alignment="column">
|
||||||
|
<Column>
|
||||||
|
<Logo size={250} />
|
||||||
|
|
||||||
|
<h1>Dasig - Astro</h1>
|
||||||
|
<Counter client:idle />
|
||||||
|
|
||||||
|
<Footer>
|
||||||
|
<Row content="center" gap={0.5}>
|
||||||
|
<Image avif={PA1.src} webp={PA2.src} size={100} />
|
||||||
|
<Copyright year="2026" name="Pat Alcala" />
|
||||||
|
</Row>
|
||||||
|
</Footer>
|
||||||
|
</Column>
|
||||||
|
</Page>
|
||||||
|
</Layout>
|
||||||
|
|
||||||
|
<style lang="sass">
|
||||||
|
h1
|
||||||
|
color: #3377AC
|
||||||
|
</style>
|
||||||
3
src/stores/sample.ts
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
// import { atom } from 'nanostores'
|
||||||
|
|
||||||
|
// export const $sample = atom(0)
|
||||||
51
src/styles/breakpoint.sass
Normal file
|
|
@ -0,0 +1,51 @@
|
||||||
|
$mobile: 375px
|
||||||
|
$tablet: 768px
|
||||||
|
$desktop: 1440px
|
||||||
|
|
||||||
|
.on-desktop-only
|
||||||
|
@media only screen and (min-width: 0px) and (max-width: $desktop)
|
||||||
|
display: none
|
||||||
|
|
||||||
|
@media only screen and (min-width: $desktop)
|
||||||
|
display: block
|
||||||
|
|
||||||
|
.on-tablet-only
|
||||||
|
@media only screen and (min-width: 0px) and (max-width: $tablet)
|
||||||
|
display: none
|
||||||
|
|
||||||
|
@media only screen and (min-width: $tablet) and (max-width: $desktop)
|
||||||
|
display: block
|
||||||
|
|
||||||
|
@media only screen and (min-width: $desktop)
|
||||||
|
display: none
|
||||||
|
|
||||||
|
.on-mobile-only
|
||||||
|
@media only screen and (min-width: $mobile)
|
||||||
|
display: block
|
||||||
|
|
||||||
|
@media only screen and (min-width: $tablet)
|
||||||
|
display: none
|
||||||
|
|
||||||
|
.on-desktop-tablet-only
|
||||||
|
@media only screen and (min-width: 0px) and (max-width: $tablet)
|
||||||
|
display: none
|
||||||
|
|
||||||
|
@media only screen and (min-width: $tablet)
|
||||||
|
display: block
|
||||||
|
|
||||||
|
.on-desktop-mobile-only
|
||||||
|
@media only screen and (min-width: 0px) and (max-width: $mobile)
|
||||||
|
display: block
|
||||||
|
|
||||||
|
@media only screen and (min-width: $mobile) and (max-width: $desktop)
|
||||||
|
display: none
|
||||||
|
|
||||||
|
@media only screen and (min-width: $desktop)
|
||||||
|
display: block
|
||||||
|
|
||||||
|
.on-tablet-mobile-only
|
||||||
|
@media only screen and (min-width: 0px) and (max-width: $desktop)
|
||||||
|
display: block
|
||||||
|
|
||||||
|
@media only screen and (min-width: $desktop)
|
||||||
|
display: none
|
||||||
9
src/styles/classes.sass
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
.fullscreen
|
||||||
|
position: absolute
|
||||||
|
top: 0
|
||||||
|
left: 0
|
||||||
|
width: 100vw
|
||||||
|
height: 100vh
|
||||||
|
object-fit: cover
|
||||||
|
z-index: -1
|
||||||
|
opacity: 1
|
||||||
45
src/styles/fonts.sass
Normal file
|
|
@ -0,0 +1,45 @@
|
||||||
|
$Roboto: Roboto, sans-serif
|
||||||
|
$Inter: Inter, sans-serif
|
||||||
|
$Montserrat: Montserrat, sans-serif
|
||||||
|
$OpenSans: 'Open Sans', sans-serif
|
||||||
|
$PublicSans: 'Public Sans', sans-serif
|
||||||
|
|
||||||
|
@font-face
|
||||||
|
font-family: 'Roboto'
|
||||||
|
font-style: normal
|
||||||
|
font-display: swap
|
||||||
|
font-weight: 100 900
|
||||||
|
src: url(https://cdn.jsdelivr.net/fontsource/fonts/roboto:vf@latest/latin-wght-normal.woff2) format('woff2-variations');
|
||||||
|
unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
|
||||||
|
|
||||||
|
@font-face
|
||||||
|
font-family: 'Inter'
|
||||||
|
font-style: normal
|
||||||
|
font-display: swap
|
||||||
|
font-weight: 100 900
|
||||||
|
src: url(https://cdn.jsdelivr.net/fontsource/fonts/inter:vf@latest/latin-wght-normal.woff2) format('woff2-variations');
|
||||||
|
unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
|
||||||
|
|
||||||
|
@font-face
|
||||||
|
font-family: 'Montserrat'
|
||||||
|
font-style: normal
|
||||||
|
font-display: swap
|
||||||
|
font-weight: 100 900
|
||||||
|
src: url(https://cdn.jsdelivr.net/fontsource/fonts/montserrat:vf@latest/latin-wght-normal.woff2) format('woff2-variations');
|
||||||
|
unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
|
||||||
|
|
||||||
|
@font-face
|
||||||
|
font-family: 'Open Sans'
|
||||||
|
font-style: normal
|
||||||
|
font-display: swap
|
||||||
|
font-weight: 300 800
|
||||||
|
src: url(https://cdn.jsdelivr.net/fontsource/fonts/open-sans:vf@latest/latin-wght-normal.woff2) format('woff2-variations');
|
||||||
|
unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
|
||||||
|
|
||||||
|
@font-face
|
||||||
|
font-family: 'Public Sans'
|
||||||
|
font-style: normal
|
||||||
|
font-display: swap
|
||||||
|
font-weight: 100 900
|
||||||
|
src: url(https://cdn.jsdelivr.net/fontsource/fonts/public-sans:vf@latest/latin-wght-normal.woff2) format('woff2-variations');
|
||||||
|
unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
|
||||||
16
src/styles/variables.sass
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
@use 'sass:color'
|
||||||
|
|
||||||
|
$background: #0c1b31
|
||||||
|
$textColor: #f0f8ff
|
||||||
|
|
||||||
|
$fontSize: 1rem
|
||||||
|
|
||||||
|
$borderMargin: 2rem
|
||||||
|
|
||||||
|
$primaryColor: #0075BB
|
||||||
|
$secondaryColor: #57687F
|
||||||
|
$accentColor: #00887C
|
||||||
|
$infoColor: #0082A4
|
||||||
|
$successColor: #009435
|
||||||
|
$warningColor: #E5B400
|
||||||
|
$errorColor: #E8595C
|
||||||
14
tsconfig.json
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"extends": "astro/tsconfigs/strict",
|
||||||
|
"include": [
|
||||||
|
".astro/types.d.ts",
|
||||||
|
"**/*"
|
||||||
|
],
|
||||||
|
"exclude": [
|
||||||
|
"dist"
|
||||||
|
],
|
||||||
|
"compilerOptions": {
|
||||||
|
"jsx": "preserve",
|
||||||
|
"jsxImportSource": "solid-js"
|
||||||
|
}
|
||||||
|
}
|
||||||