- fallbacks composants + directus.ts passes a Mostuki Photo / Cannes - corrige Contact.astro (PARIS -> CANNES) - seed/token scripts : defauts Mostuki + email corentin.jog@gmail.com - docker-compose dev : conteneurs mostuki-*, email admin, secrets dev - backup.sh : conteneurs par defaut mostuki-* - package.json : name mostuki-photo + description vitrine - .env.example : email admin - DEPLOY.md : retrait des references obsoletes a l ancien branding Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
23 lines
751 B
Text
23 lines
751 B
Text
---
|
|
export interface Props {
|
|
studio?: string;
|
|
city?: string;
|
|
country?: string;
|
|
est?: number;
|
|
}
|
|
const { studio = 'Mostuki Photo', city = 'CANNES', country = 'FR', est = 2018 } = Astro.props;
|
|
const year = new Date().getFullYear();
|
|
---
|
|
<footer class="site-footer">
|
|
<div class="foot-row">
|
|
<span>[ {studio.toUpperCase()} ]</span>
|
|
<span>STUDIO DE PHOTOGRAPHIE</span>
|
|
<span>{city} {country}</span>
|
|
<span>EST. {est}</span>
|
|
<span>© {year}</span>
|
|
<span><a href="#top">^ TOP</a></span>
|
|
</div>
|
|
<p class="build-info" aria-hidden="true">
|
|
BUILD 0042 · COMPILED WITH HTML5 / CSS3 / HEART · SERVING SINCE 2018 · HUMAN-READABLE / MACHINE-READY · TRY ↑↑↓↓←→←→BA
|
|
</p>
|
|
</footer>
|