Source code for the home Oblic Parallels website https://oblic-parallels.fr
Find a file
Gu://em_ 04da5d6ec6
Some checks failed
Build and deploy all / build (push) Failing after 40s
Build and deploy all / deploy (push) Has been skipped
Build and deploy all / notify (push) Failing after 3s
CI fix tentative #5
2026-03-30 17:50:40 +02:00
.forgejo/workflows CI fix tentative #5 2026-03-30 17:50:40 +02:00
public Migrated to Astro 2026-03-15 18:34:40 +01:00
src Fixed missing blur on tablet's header for webkit browsers 2026-03-22 11:18:14 +01:00
.gitignore Migrated to Astro 2026-03-15 18:34:40 +01:00
astro.config.mjs Migrated to Astro 2026-03-15 18:34:40 +01:00
package.json Migrated to Astro 2026-03-15 18:34:40 +01:00
pnpm-lock.yaml Migrated to Astro 2026-03-15 18:34:40 +01:00
README.md New responsive UI for mobile devices 2026-03-16 17:31:19 +01:00
tsconfig.json Migrated to Astro 2026-03-15 18:34:40 +01:00

Oblic Parallels Home Website

About

Contains the source code of the Home OP website. Now uses Astro instead of the old static website !

Structure

Project

  • src/* - Source code (components, pages, styles, images, etc.)
  • public/* - Non-code, unprocessed assets (fonts, icons, etc.)
  • package.json - Project manifest
  • astro.config.mjs - Astro configuration file
  • tsconfig.json - TypeScript configuration file

src/

  • assets/
  • components/
  • layouts/
  • pages/
  • scripts/
  • data/ - Contains the configs to generate the website, each as a JSON file (contains cards, site name, etc.)
  • styles - default CSS style sheets and custom themes

Build

This project is meant to be used with pnpm, but you can use whatever package manager you want (at your own risk).

Commands

Command Action
pnpm install Installs dependencies
pnpm dev Starts local dev server at localhost:4321
pnpm build Build your production site to ./dist/
pnpm preview Preview your build locally, before deploying
pnpm astro ... Run CLI commands like astro add, astro check
pnpm astro -- --help Get help using the Astro CLI