Mirror of the sourcecode for my blog, original repo: https://github.com/NobbZ/blog-nobbz-dev
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add imprint

+36 -1
+1 -1
src/components/NavBox.astro
··· 20 20 <li class:list={["h-4"]}></li> 21 21 <NavItem href="/sponsors" disabled>Sponsors</NavItem> 22 22 <li class:list={["h-4"]}></li> 23 - <NavItem href="/imprint" disabled>Imprint</NavItem> 23 + <NavItem href="/imprint">Imprint</NavItem> 24 24 </ol> 25 25 </nav>
+35
src/pages/imprint/index.astro
··· 1 + --- 2 + import NobbzDev from "../../layouts/NobbzDev.astro"; 3 + --- 4 + 5 + <NobbzDev title="Imprint"> 6 + <h1 7 + class:list={[ 8 + "p-1", 9 + "text-4xl", 10 + "font-extrabold", 11 + "text-[--highlight-color]", 12 + ]} 13 + > 14 + Imprint 15 + </h1> 16 + 17 + <p class:list={["m-1"]}> 18 + <em>Norber Melzer</em><br /> 19 + Fährenkamp 18<br /> 20 + 22880 Wedel<br /> 21 + Germany 22 + </p> 23 + 24 + <p class:list={["m-1"]}> 25 + <em>Telefon:</em> 26 + +49 (0)841 89-0 27 + </p> 28 + 29 + <p class:list={["m-1"]}> 30 + <em>E-Mail:</em> 31 + nmelzer@nobbz.dev 32 + </p> 33 + 34 + <p class:list={["m-1"]}><em>USt-ID</em>: DE342446808</p> 35 + </NobbzDev>