10 lines
388 B
TypeScript
10 lines
388 B
TypeScript
import { atom } from 'nanostores'
|
|
|
|
export const $websiteName = atom<string>('Dasig')
|
|
export const $websiteDescription = atom<string>('A template for next level speed (Solid Version)')
|
|
|
|
export const $font = atom<string>('inter')
|
|
export const $fontSource = atom<'cdn'| 'local'>('cdn')
|
|
|
|
export const $companyName = atom<string>('Pat Alcala')
|
|
export const $copyRightYear = atom<number>(2025)
|