Skip to content

Commit be5af20

Browse files
committed
website update
1 parent 3b45809 commit be5af20

7 files changed

Lines changed: 37 additions & 9 deletions

File tree

website/index.html

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" href="src/assets/logo/delorean-aixm-logo-small.png" type="image/png" />
5+
<link rel="apple-touch-icon" href="src/assets/logo/delorean-aixm-logo-small.png" type="image/png" />
6+
<link rel="canonical" href="https://delorean-aixm.io/" />
67
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Delorean AIXM</title>
8+
<meta name="theme-color" content="#000000" />
89
<meta
910
name="description"
1011
content="Delorean is an open-source tool designed to manage AIXM (Aeronautical Information Exchange Model) and streamline the use of digital aeronautical data. Built for developers and aviation professionals, it supports the aviation data exchange standard and simplifies aeronautical information management (AIM) and aeronautical data modeling. Delorean integrates with SWIM (System Wide Information Management) and aeronautical information services (AIS), providing robust handling of GML (Geography Markup Language) for modern aviation systems."
@@ -14,12 +15,26 @@
1415
content="Delorean, AIXM, Aeronautical Information Exchange Model, Digital NOTAM, Aeronautical Information Management (AIM), System Wide Information Management (SWIM), Aeronautical information services (AIS), Open source aviation software, Aeronautical data modeling, Airport Mapping Database (AMDB), EUROCONTROL, Geography Markup Language (GML)"
1516
/>
1617
<meta property="og:title" content="Delorean AIXM - Roadmap" />
17-
<meta property="og:description" content="Delorean is an open-source tool designed to manage AIXM (Aeronautical Information Exchange Model) and streamline the use of digital aeronautical data. Built for developers and aviation professionals, it supports the aviation data exchange standard and simplifies aeronautical information management (AIM) and aeronautical data modeling. Delorean integrates with SWIM (System Wide Information Management) and aeronautical information services (AIS), providing robust handling of GML (Geography Markup Language) for modern aviation systems." />
18-
<meta property="og:type" content="project" />
18+
<meta property="og:description" content="Delorean is an open source tool designed to manage AIXM (Aeronautical Information Exchange Model) and streamline the use of digital aeronautical data. Built for developers and aviation professionals, it supports the aviation data exchange standard and simplifies aeronautical information management (AIM) and aeronautical data modeling. Delorean integrates with SWIM (System Wide Information Management) and aeronautical information services (AIS), providing robust handling of GML (Geography Markup Language) for modern aviation systems." />
19+
<meta property="og:type" content="website" />
1920
<meta property="og:url" content="https://delorean-aixm.io/" />
21+
<title>Delorean AIXM</title>
22+
<!-- Google Tag Manager -->
23+
<script>
24+
(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
25+
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
26+
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
27+
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
28+
})(window,document,'script','dataLayer','GTM-5L4TL3PQ');
29+
</script>
30+
<!-- End Google Tag Manager -->
2031
</head>
2132
<body>
2233
<div id="app"></div>
2334
<script type="module" src="/src/main.jsx"></script>
35+
<!-- Google Tag Manager (noscript) -->
36+
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5L4TL3PQ"
37+
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
38+
<!-- End Google Tag Manager (noscript) -->
2439
</body>
2540
</html>

website/public/robots.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
User-agent: *
2+
Allow: /
3+
4+
Sitemap: https://delorean-aixm.io/sitemap.xml

website/public/vite.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

website/src/assets/bluesky.png

1.56 KB
Loading

website/src/assets/x.png

1.76 KB
Loading

website/src/components/navbar.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
.navbar-icons {
4949
display: flex;
5050
align-items: center;
51-
gap: 1.5rem;
51+
gap: 20px;
5252
padding-left: 10px;
5353
}
5454

website/src/components/navbar.jsx

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ import "./navbar.css";
77
import GithubIcon from "../assets/github.svg";
88
import LinkedinIcon from "../assets/linkedin.svg";
99
import MastodonIcon from "../assets/mastodon.svg";
10+
import XIcon from "../assets/x.png";
11+
import BlueSkyIcon from "../assets/bluesky.png";
1012
import AtIcon from "../assets/at.svg";
1113
import DeloreanIcon from "../assets/logo/delorean-aixm-logo-big.svg";
1214

@@ -90,15 +92,23 @@ export function Navbar({ onNavigate , onCleanBackground}) {
9092
</a>
9193

9294
<a
93-
href="https://www.linkedin.com/in/raphaelgerth/"
95+
href="https://bsky.app/profile/delorean-aixm.bsky.social"
9496
target="_blank"
9597
rel="noopener noreferrer"
9698
>
97-
<img src={LinkedinIcon} alt="LinkedIn" className="w-[40px] h-[40px]" />
99+
<img src={BlueSkyIcon} alt="BlueSky" className="w-[35px] h-[35px]" />
98100
</a>
99101

100102
<a
101-
href="https://mastodon.social/@3l_gee"
103+
href="https://x.com/delorean_aixm"
104+
target="_blank"
105+
rel="noopener noreferrer"
106+
>
107+
<img src={XIcon} alt="X" className="w-[35px] h-[35px]" />
108+
</a>
109+
110+
<a
111+
href="https://mastodon.social/@delorean_aixm"
102112
target="_blank"
103113
rel="noopener noreferrer"
104114
>

0 commit comments

Comments
 (0)