a a vibe-coded abomination experiment of a fragrance review platform built on the atmosphere. drydown.social
at main 28 lines 1.3 kB view raw
1<!doctype html> 2<html lang="en"> 3 <head> 4 <meta charset="UTF-8" /> 5 <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 7 <title>Drydown - Fragrance Reviews</title> 8 <meta name="description" content="Discover and track fragrances on Drydown." /> 9 10 <!-- Open Graph Default Tags --> 11 <meta property="og:type" content="website" /> 12 <meta property="og:url" content="https://drydown.social/" /> 13 <meta property="og:title" content="Drydown - Fragrance Reviews" /> 14 <meta property="og:description" content="Discover and track fragrances on Drydown." /> 15 <meta property="og:image" content="https://drydown.social/default-og.png" /> 16 17 <!-- Twitter Default Tags --> 18 <meta property="twitter:card" content="summary_large_image" /> 19 <meta property="twitter:url" content="https://drydown.social/" /> 20 <meta property="twitter:title" content="Drydown - Fragrance Reviews" /> 21 <meta property="twitter:description" content="Discover and track fragrances on Drydown." /> 22 <meta property="twitter:image" content="https://drydown.social/default-og.png" /> 23 </head> 24 <body> 25 <div id="app"></div> 26 <script type="module" src="/src/main.tsx"></script> 27 </body> 28</html>