Skip to content

Commit

Permalink
Fix larger screen bento sizing on index; Fix Profile Picture not show…
Browse files Browse the repository at this point in the history
…ing; Add curr download;
  • Loading branch information
AE517 committed Oct 17, 2024
1 parent f5d4cb3 commit f777034
Show file tree
Hide file tree
Showing 9 changed files with 697 additions and 679 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
13 changes: 6 additions & 7 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,11 @@ export default defineNuxtConfig({
ssr: false,
devtools: { enabled: true },
modules: ['@nuxtjs/tailwindcss', 'nuxt-icon', '@nuxtjs/mdc', '@nuxt/image'],
mdc: {
highlight: {
theme: 'monokai',
langs: ['shellscript'],
wrapperStyle: true,
},
},

image: {
inject: true
},

app: {
head: {
charset: 'utf-8',
Expand All @@ -29,11 +24,15 @@ export default defineNuxtConfig({
// mode: 'out-in',
// },
},

css: ['~/assets/css/main.css'],

postcss: {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
},

compatibilityDate: '2024-10-17',
});
8 changes: 4 additions & 4 deletions pages/about.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<figure id="picture-image" class="flex justify-center">
<NuxtImg
class="aspect-square rounded-md transition-all sm:max-lg:size-3/5 lg:size-2/3"
src="/assets/images/profile.webp"
src="/profile/profile.webp"
alt="Guilherme-profile-picture"
/>
</figure>
Expand Down Expand Up @@ -35,11 +35,11 @@
<section class="whoami col-span-1 md:col-span-2">
<div class="flex flex-col justify-center gap-y-10">
<section id="about-me" class="flex animate-fade-left flex-col justify-center gap-y-5 animate-delay-500">
<h1
<h1
class="border-b-2 border-sundress text-center font-oxanium text-5xl font-semibold uppercase md:w-[300px] lg:text-left lg:capitalize"
>
Who am I?
</h1>
Who am I? <a href="/files/curr.pdf" target="_blank" download="guilherme-araujo.pdf"><Icon name="mdi:file-download" color="#EBCA89" size="50" class="mb-2"/></a>
</h1>
<p class="text-justify text-lg lg:text-xl">
I&apos;m a <strong class="text-sundress"> Web Developer</strong> and
<strong class="text-sundress">Pixel Artist</strong> based in Brazil. With a passion for arts, games and
Expand Down
2 changes: 1 addition & 1 deletion pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="h-full">
<div
ref="wrapper"
class="wrapper grid size-full grid-cols-1 gap-5 p-3 font-poppins *:size-full *:rounded-lg *:bg-midnight sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 xl:grid-cols-5 xl:grid-rows-[repeat(3,255px)]"
class="wrapper grid size-full grid-cols-1 gap-5 p-3 font-poppins *:size-full *:rounded-lg *:bg-midnight sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 xl:grid-cols-5 xl:content-center xl:grid-rows-[repeat(3,_minmax(255px,_300px))]"
>
<div id="greet" class="flex animate-fade-up flex-col justify-center p-5 animate-delay-100 lg:col-span-2">
<NuxtLink to="/about" id="container" class="ml-4 size-full py-12">
Expand Down
Binary file added public/files/curr.pdf
Binary file not shown.
File renamed without changes.
1,353 changes: 686 additions & 667 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit f777034

Please sign in to comment.