Fix duplicate <a> and add SEO metatags
This commit is contained in:
parent
1fc199b933
commit
e59f8955b3
1 changed files with 5 additions and 4 deletions
|
|
@ -16,6 +16,9 @@
|
|||
<title>Robert S.</title>
|
||||
<link rel="icon" type="image/jpg" href="./assets/img/logo.jpg">
|
||||
<!-- Meta tags -->
|
||||
<meta name="description" content="A developer and tech enthusiast from the Netherlands." />
|
||||
<meta name="keywords" content="developer, full-stack, website, python, javascript, tailwindcss" />
|
||||
<meta name="author" content="Robert S." />
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<!-- CSS -->
|
||||
|
|
@ -41,11 +44,9 @@
|
|||
<header x-data="{ mobileMenuOpen : false }" class="body-font">
|
||||
<div class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row">
|
||||
<div class="flex">
|
||||
<a class="flex title-font font-medium items-center mb-4 md:mb-0">
|
||||
<a href="/">
|
||||
<a href="/" class="flex title-font font-medium items-center mb-4 md:mb-0">
|
||||
<span class="text-2xl font-bold hover:text-gray-300 duration-200">Robert S.</span>
|
||||
</a>
|
||||
</a>
|
||||
<button @click="mobileMenuOpen = !mobileMenuOpen"
|
||||
class="inline-block md:hidden w-8 h-8 text-gray-400 focus:text-white p-1 ml-auto">
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue