Skip to content

Commit

Permalink
💄 some more changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Fredkiss3 committed Sep 23, 2024
1 parent bc17857 commit dab3f7b
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 12 deletions.
19 changes: 10 additions & 9 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ const __dirname = import.meta.dirname;

// https://astro.build/config
export default defineConfig({
integrations: [tailwind(), sitemap()],
vite: {
resolve: {
alias: {
"~": path.resolve(__dirname, "./src"),
},
},
},
});
site: "https://fredkiss.dev",
integrations: [tailwind(), sitemap()],
vite: {
resolve: {
alias: {
"~": path.resolve(__dirname, "./src"),
},
},
},
});
5 changes: 4 additions & 1 deletion src/layouts/base-layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,10 @@ const description =
class="max-w-2xl mx-auto mb-40 border-t border-zinc-500 mt-8 py-2 text-zinc-700 flex justify-between dark:text-inherit"
>
<small>Copyright &copy; 2024 - Fred KISSIE</small>
<small>Built with Astro & deployed on ZaneOps</small>
<div class="flex flex-col gap-1">
<small>Built with Astro & deployed on ZaneOps</small>
<small>Inspired by <a href="https://nexxel.dev" class="inline-flex gap-1 items-center underline hover:decoration-wavy decoration-[0.11em]">nexxel.dev <Icon type="arrow-external" class="size-3" /> </a></small>
</div>
</footer>
{process.env.NODE_ENV === "development" && <TailwindIndicator />}
</body>
Expand Down
5 changes: 3 additions & 2 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,13 @@ const totalYearsDev = new Date().getFullYear() - 2017;
<Image
src={portraitImage}
alt="Portrait of Fred KISSIE"
width={120}
height={120}
width={500}
height={500}
loading="eager"
class:list={[
"rounded-md object-center object-cover border-zinc-700 dark:border-white border-2",
"hover:rotate-0 -rotate-6 transition duration-150",
"size-32"
]}
/>
</section>
Expand Down

0 comments on commit dab3f7b

Please sign in to comment.