Skip to content

Commit

Permalink
feat: updates on the photo, logo and blog section
Browse files Browse the repository at this point in the history
  • Loading branch information
valerymelou committed Jul 27, 2024
1 parent 74ed998 commit ff3b81d
Show file tree
Hide file tree
Showing 9 changed files with 40 additions and 26 deletions.
11 changes: 11 additions & 0 deletions apps/website/public/assets/images/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/website/public/assets/images/valerymelou.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/website/public/favicon.ico
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<article class="relative mx-auto max-w-3xl pt-10">
<article class="relative max-w-3xl pt-10">
<a routerLink="/blog" ui-flat-button color="accent" class="mb-4">
<ng-icon name="bootstrapArrowLeft" strokeWidth="5" size="20"></ng-icon>
<span class="ml-3">Articles</span>
Expand Down
6 changes: 3 additions & 3 deletions libs/blog/feature-home/src/lib/blog-home.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
<h1
class="mb-5 text-2xl font-bold leading-[3rem] tracking-tight text-black lg:text-4xl dark:text-white"
>
Inside my head
Tech thoughts
</h1>
<h2 class="text-xl lg:max-w-2xl">
I talk about Django, Angular... Web Development in general and many other
topics. These are just a few of the things in my head.
Diving into the world of Django, Angular, and programming in general. Expect
a mix of technical deep dives, project showcases, and industry insights.
</h2>

<div
Expand Down
4 changes: 2 additions & 2 deletions libs/blog/feature-home/src/lib/blog-home.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ export class BlogHomeComponent {
},
});
metadataService.updateMetadata({
title: 'Inside my head | Valery Melou',
title: 'Tech thoughts | Valery Melou',
description:
'I talk about Django, Angular... Web Development in general and many other topics. These are just a few of the things in my head.',
'Diving into the world of Django, Angular, and programming in general. Expect a mix of technical deep dives, project showcases, and industry insights.',
});
}
}
37 changes: 19 additions & 18 deletions libs/shared/layout/src/lib/footer/footer.component.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
<footer class="mx-5 flex items-center py-8 text-sm font-light lg:mx-[272px]">
<div class="grid grid-cols-2 gap-8">
<div class="col-span-2 flex flex-col sm:col-span-1">
<p class="mt-auto">
The code of this website is available on
<a
href="https://github.com/valerymelou/valerymelou.com"
ui-link
target="_blank"
rel="noopener"
>GitHub</a
>.
</p>
<p>
All the content is from me and edited in
<a href="https://contentful.com" ui-link target="_blank" rel="noopener"
>Contentful</a
>.
</p>
<p class="text-sm">&copy; {{ date | date: 'yyyy' }} Valery Melou.</p>
</div>
<div class="col-span-2 sm:col-span-1">
<p>
Coded in
Expand Down Expand Up @@ -35,23 +54,5 @@
>.
</p>
</div>
<div class="col-span-2 flex flex-col sm:col-span-1">
<p class="mt-auto lg:text-right">
The code of this website is available on
<a
href="https://github.com/valerymelou/valerymelou.com"
ui-link
target="_blank"
rel="noopener"
>GitHub</a
>.
</p>
<p class="lg:text-right">
All the content is from me and saved on
<a href="https://contentful.com" ui-link target="_blank" rel="noopener"
>Contentful</a
>.
</p>
</div>
</div>
</footer>
4 changes: 3 additions & 1 deletion libs/shared/layout/src/lib/footer/footer.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ import { LinkComponent } from '@valerymelou/shared/ui';
imports: [CommonModule, LinkComponent],
templateUrl: './footer.component.html',
})
export class FooterComponent {}
export class FooterComponent {
date = new Date();
}
2 changes: 1 addition & 1 deletion libs/shared/layout/src/lib/logo/logo.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
}

<img
src="/assets/images/valerymelou.jpg"
src="/assets/images/logo.svg"
class="border-dark rounded-full border-2 dark:border-white"
alt="Valery Melou"
width="40"
Expand Down

0 comments on commit ff3b81d

Please sign in to comment.