Skip to content

Commit 61605e8

Browse files
CFD AI initiated
1 parent 0f9d35a commit 61605e8

File tree

6 files changed

+61
-5
lines changed

6 files changed

+61
-5
lines changed

content/ai/_index.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: "CFD AI"
3+
date: 2025-06-21T00:00:00Z
4+
---
5+
6+
# List of AI projects
7+
Here you can find all AI projects.

data/ai.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# data/buttons.yaml
2+
data:
3+
- name: "Profile AI"
4+
icon: "fa-solid fa-comment-slash"
5+
url: "/ProfiledAi/"
6+

data/home.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# data/buttons.yaml
22
data:
3+
4+
5+
- name: "AI"
6+
icon: "fa-solid fa-brain"
7+
url: "/ai"
8+
39
- name: "Game"
410
icon: "fa-light fa-chart-mixed"
511
url: "/games"

layouts/ai/ai.html

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
{{ partial "header.html" . }}
6+
<link href="https://pro.fontawesome.com/releases/v6.0.0-beta1/css/all.css" rel="stylesheet" crossorigin="anonymous"
7+
referrerpolicy="no-referrer" />
8+
<link rel="stylesheet" href="/css/games.css">
9+
</head>
10+
11+
<body style="background-color: #e5e9f4;">
12+
<main>
13+
<div class="MainButtonParent">
14+
<i style="align-items: center;" class="fa-solid fa-game-console-handheld" height="96px" onclick="window.location.href='/'"></i>
15+
</div>
16+
<h3 style="align-items: center;">Meet CFD AI</h3>
17+
<h4 style="align-items: center;"></h4>
18+
19+
<div class="buttons">
20+
{{ range .Site.Data.ai.data }}
21+
<button class="neumorphic hapticButton" onclick="window.location.href='{{ .url }}'">
22+
<i class="{{ .icon }}"></i>
23+
<span>{{ .name }}</span>
24+
</button>
25+
{{ end }}
26+
</div>
27+
</main>
28+
<script src="js/feedback.js" ></script>
29+
</body>
30+
31+
</html>

public/index.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33

44
<head>
5-
<meta name="generator" content="Hugo 0.126.0"><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
5+
<meta name="generator" content="Hugo 0.129.0"><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
66

77

88
<script async src="https://www.googletagmanager.com/gtag/js?id=G-VM01Q3R43D"></script>
@@ -64,6 +64,11 @@ <h4 style="align-items: center;">Tools, Games, Art, Animation</h4>
6464

6565
<div class="buttons">
6666

67+
<button class="neumorphic hapticButton" onclick="window.location.href='\/ai'">
68+
<i class="fa-solid fa-brain"></i>
69+
<span>AI</span>
70+
</button>
71+
6772
<button class="neumorphic hapticButton" onclick="window.location.href='\/games'">
6873
<i class="fa-light fa-chart-mixed"></i>
6974
<span>Game</span>

public/sitemap.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@
66
</url><url>
77
<loc>http://localhost:1313/about/users/abhijeet/</loc>
88
</url><url>
9-
<loc>http://localhost:1313/designs/</loc>
9+
<loc>http://localhost:1313/ai/</loc>
10+
<lastmod>2025-06-21T00:00:00+00:00</lastmod>
11+
</url><url>
12+
<loc>http://localhost:1313/designlab/</loc>
1013
<lastmod>2025-06-06T00:00:00+00:00</lastmod>
1114
</url><url>
1215
<loc>http://localhost:1313/about/</loc>
@@ -15,15 +18,13 @@
1518
<loc>http://localhost:1313/</loc>
1619
<lastmod>2023-01-01T00:00:00+00:00</lastmod>
1720
</url><url>
18-
<loc>http://localhost:1313/art/</loc>
21+
<loc>http://localhost:1313/games/</loc>
1922
<lastmod>2023-01-01T00:00:00+00:00</lastmod>
2023
</url><url>
2124
<loc>http://localhost:1313/history/</loc>
2225
<lastmod>2023-01-01T00:00:00+00:00</lastmod>
2326
</url><url>
2427
<loc>http://localhost:1313/categories/</loc>
25-
</url><url>
26-
<loc>http://localhost:1313/test/</loc>
2728
</url><url>
2829
<loc>http://localhost:1313/tags/</loc>
2930
</url><url>

0 commit comments

Comments
 (0)