|
1 | | -<!DOCTYPE html> |
2 | | -<html lang="en" class="scroll-smooth"> |
3 | | - <head> |
4 | | - <meta charset="UTF-8" /> |
5 | | - <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
6 | | - <title>Crafting the Backbone of Modern Applications</title> |
| 1 | +<!doctype html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"/> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover"/> |
7 | 6 |
|
8 | | - <!-- Google tag (gtag.js) --> |
9 | | - <script |
10 | | - async |
11 | | - src="https://www.googletagmanager.com/gtag/js?id=G-M2E35PYWYV" |
12 | | - ></script> |
13 | | - <script> |
14 | | - window.dataLayer = window.dataLayer || []; |
15 | | - function gtag() { |
16 | | - dataLayer.push(arguments); |
17 | | - } |
18 | | - gtag("js", new Date()); |
19 | | - gtag("config", "G-M2E35PYWYV"); |
20 | | - </script> |
| 7 | + <!-- Primary meta --> |
| 8 | + <title>mlz.no - Martin Zachariassen</title> |
| 9 | + <meta name="description" |
| 10 | + content="Martin Zachariassen — backend developer. Architecture, integrations and production-critical services."/> |
| 11 | + <meta name="author" content="Martin Zachariassen"/> |
| 12 | + <meta name="robots" content="index, follow"/> |
| 13 | + <link rel="canonical" href="https://mlz.no/"/> |
21 | 14 |
|
22 | | - <!-- Tailwind --> |
23 | | - <script src="https://cdn.tailwindcss.com"></script> |
| 15 | + <!-- Open Graph --> |
| 16 | + <meta property="og:type" content="website"/> |
| 17 | + <meta property="og:url" content="https://mlz.no/"/> |
| 18 | + <meta property="og:site_name" content="mlz.no"/> |
| 19 | + <meta property="og:title" content="mlz.no — Martin Zachariassen"/> |
| 20 | + <meta property="og:description" |
| 21 | + content="Backend developer. Architecture, integrations and production-critical services."/> |
| 22 | + <meta property="og:image" content="https://mlz.no/icon-512.png"/> |
| 23 | + <meta property="og:image:width" content="512"/> |
| 24 | + <meta property="og:image:height" content="512"/> |
| 25 | + <meta property="og:image:type" content="image/png"/> |
| 26 | + <meta property="og:locale" content="en_GB"/> |
24 | 27 |
|
25 | | - <!-- Font --> |
26 | | - <style> |
27 | | - @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap"); |
28 | | - body { |
29 | | - font-family: "Poppins", sans-serif; |
30 | | - } |
31 | | - </style> |
| 28 | + <!-- Twitter / X --> |
| 29 | + <meta name="twitter:card" content="summary"/> |
| 30 | + <meta name="twitter:url" content="https://mlz.no/"/> |
| 31 | + <meta name="twitter:title" content="mlz.no — Martin Zachariassen"/> |
| 32 | + <meta name="twitter:description" |
| 33 | + content="Backend developer. Architecture, integrations and production-critical services."/> |
| 34 | + <meta name="twitter:image" content="https://mlz.no/icon-512.png"/> |
32 | 35 |
|
33 | | - <!-- Favicon --> |
34 | | - <link |
35 | | - rel="icon" |
36 | | - type="image/png" |
37 | | - sizes="16x16" |
38 | | - href="images/favicon/favicon-16x16.png" |
39 | | - /> |
40 | | - <link |
41 | | - rel="icon" |
42 | | - type="image/png" |
43 | | - sizes="32x32" |
44 | | - href="images/favicon/favicon-32x32.png" |
45 | | - /> |
46 | | - <link |
47 | | - rel="icon" |
48 | | - type="image/png" |
49 | | - sizes="192x192" |
50 | | - href="images/favicon/android-chrome-192x192.png" |
51 | | - /> |
52 | | - <link |
53 | | - rel="icon" |
54 | | - type="image/png" |
55 | | - sizes="512x512" |
56 | | - href="images/favicon/android-chrome-512x512.png" |
57 | | - /> |
58 | | - <link rel="apple-touch-icon" href="images/favicon/apple-touch-icon.png" /> |
59 | | - </head> |
| 36 | + <!-- Favicons --> |
| 37 | + <link rel="icon" type="image/x-icon" href="/favicon.ico"/> |
| 38 | + <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"/> |
| 39 | + <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"/> |
| 40 | + <link rel="icon" type="image/png" sizes="48x48" href="/favicon-48x48.png"/> |
| 41 | + <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"/> |
| 42 | + <link rel="manifest" href="/site.webmanifest"/> |
| 43 | + <meta name="theme-color" content="#1a1b26"/> |
60 | 44 |
|
61 | | - <body class="bg-black text-white font-sans"> |
62 | | - <header |
63 | | - class="h-screen flex items-center justify-center text-center bg-black relative" |
64 | | - > |
65 | | - <div |
66 | | - class="container mx-auto max-w-screen-lg px-4 md:px-6 lg:px-8 xl:px-10 2xl:px-12 grid grid-cols-1 md:grid-cols-2 gap-6 items-center" |
67 | | - > |
68 | | - <!-- Text Section --> |
69 | | - <div class="order-2 md:order-1 max-w-xl md:ml-4"> |
70 | | - <h1 class="text-4xl md:text-5xl font-bold text-white"> |
71 | | - Hello. <br /> |
72 | | - I am <span class="text-yellow-400">Martin</span> |
73 | | - </h1> |
74 | | - <p class="mt-4 text-base md:text-lg text-gray-300"> |
75 | | - Backend developer specializing in building robust APIs, scalable |
76 | | - core systems, and event-driven architectures. Experienced in |
77 | | - crafting seamless integrations for modern distributed applications. |
78 | | - </p> |
79 | | - <div |
80 | | - class="mt-8 flex flex-col md:flex-row gap-4 justify-center md:justify-center" |
81 | | - > |
82 | | - <a |
83 | | - href="https://github.com/martinzachariassen" |
84 | | - target="_blank" |
85 | | - rel="noopener noreferrer" |
86 | | - class="bg-gray-900 border border-yellow-400 text-yellow-400 px-6 py-3 rounded-md font-semibold hover:bg-yellow-400 hover:text-black hover:shadow-lg transition" |
87 | | - > |
88 | | - Check Out My GitHub |
89 | | - </a> |
90 | | - </div> |
91 | | - </div> |
| 45 | + <!-- Font: preconnect first, then preload the single woff2 we actually need --> |
| 46 | + <link rel="preconnect" href="https://fonts.googleapis.com"/> |
| 47 | + <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin/> |
| 48 | + <link rel="preload" as="style" |
| 49 | + href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap"/> |
| 50 | + <link rel="stylesheet" |
| 51 | + href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap" |
| 52 | + media="print" onload="this.media='all'"/> |
| 53 | + <noscript> |
| 54 | + <link rel="stylesheet" |
| 55 | + href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap"/> |
| 56 | + </noscript> |
92 | 57 |
|
93 | | - <!-- Image Section --> |
94 | | - <div class="order-1 md:order-2 flex justify-center"> |
95 | | - <img |
96 | | - src="/images/martin.jpg" |
97 | | - alt="Martin" |
98 | | - class="rounded-lg shadow-lg w-48 h-48 sm:w-60 sm:h-60 md:w-80 md:h-80 object-cover transform hover:scale-105 transition duration-300" |
99 | | - /> |
100 | | - </div> |
101 | | - </div> |
102 | | - </header> |
103 | | - </body> |
| 58 | + <!-- Structured data (JSON-LD) --> |
| 59 | + <script type="application/ld+json"> |
| 60 | + { |
| 61 | + "@context": "https://schema.org", |
| 62 | + "@type": "Person", |
| 63 | + "name": "Martin Zachariassen", |
| 64 | + "url": "https://mlz.no", |
| 65 | + "jobTitle": "Back-End Developer", |
| 66 | + "description": "Backend developer with 9 years of experience in architecture, integrations and production-critical services.", |
| 67 | + "sameAs": [ |
| 68 | + "https://github.com/martinzachariassen", |
| 69 | + "https://www.linkedin.com/in/martinzachariassen" |
| 70 | + ], |
| 71 | + "address": { |
| 72 | + "@type": "PostalAddress", |
| 73 | + "addressCountry": "NO" |
| 74 | + } |
| 75 | + } |
| 76 | + </script> |
| 77 | + <!-- Analytics (Umami — cookieless, GDPR-compliant, self-hosted script) --> |
| 78 | + <script defer src="/umami.js" |
| 79 | + data-website-id="e73d093f-ea9e-4839-8c5f-3dd4888a3c36"></script> |
| 80 | +</head> |
| 81 | +<body> |
| 82 | +<div id="app"></div> |
| 83 | +<script type="module" src="/src/main.tsx"></script> |
| 84 | +</body> |
104 | 85 | </html> |
0 commit comments