Compare commits

..

No commits in common. "c2ab088799bcf284ec95b570166b290990d60f68" and "991cb57c88c0931690c00465051382ac03b183c5" have entirely different histories.

8 changed files with 45 additions and 78 deletions

2
Cargo.lock generated
View File

@ -117,7 +117,7 @@ dependencies = [
[[package]]
name = "athome"
version = "0.2.1"
version = "0.2.0"
dependencies = [
"dioxus",
"dioxus-free-icons",

View File

@ -1,6 +1,6 @@
[package]
name = "athome"
version = "0.2.1"
version = "0.2.0"
authors = ["Tuan-Dat Tran <tuan-dat.tran@tudattr.dev>"]
edition = "2021"

View File

@ -1,41 +0,0 @@
User-agent: CCBot
Disallow: /
User-agent: img2dataset
Disallow: /
User-agent: Google-Extended
Disallow: /
User-agent: anthropic-ai
Disallow: /
User-agent: Claude-Web
Disallow: /
User-agent: Omgilibot
Disallow: /
User-agent: Omgili
Disallow: /
User-agent: FacebookBot
Disallow: /
User-agent: Bytespider
Disallow: /
User-agent: magpie-crawler
Disallow: /
User-Agent: GPTBot
Disallow: /
User-agent: *
Disallow: /*
Allow: /
Allow: /resume
Allow: /publications
Allow: /consulting
Sitemap: https://www.tudattr.dev/sitemap.xml

View File

@ -1,27 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://www.tudattr.dev/</loc>
<lastmod>2024-07-25</lastmod>
<changefreq>monthly</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>https://www.tudattr.dev/resume</loc>
<lastmod>2024-07-25</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>https://www.tudattr.dev/publications</loc>
<lastmod>2024-07-25</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>https://www.tudattr.dev/consulting</loc>
<lastmod>2024-07-25</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
</urlset>

View File

@ -676,6 +676,10 @@ video {
display: flex;
}
.inline-flex {
display: inline-flex;
}
.size-auto {
width: auto;
height: auto;
@ -725,6 +729,11 @@ video {
width: 0.75rem;
}
.w-fit {
width: -moz-fit-content;
width: fit-content;
}
.w-full {
width: 100%;
}
@ -742,10 +751,6 @@ video {
max-width: 2rem;
}
.max-w-md {
max-width: 28rem;
}
.max-w-sm {
max-width: 24rem;
}
@ -754,6 +759,10 @@ video {
max-width: 36rem;
}
.max-w-md {
max-width: 28rem;
}
.flex-grow {
flex-grow: 1;
}
@ -774,6 +783,10 @@ video {
align-items: center;
}
.justify-start {
justify-content: flex-start;
}
.justify-end {
justify-content: flex-end;
}
@ -802,6 +815,10 @@ video {
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.overflow-hidden {
overflow: hidden;
}
.overflow-x-auto {
overflow-x: auto;
}
@ -956,6 +973,10 @@ video {
background-clip: text;
}
.p-1 {
padding: 0.25rem;
}
.p-3 {
padding: 0.75rem;
}
@ -1282,6 +1303,10 @@ video {
margin-top: 0px;
}
.sm\:max-w-sm {
max-width: 24rem;
}
.sm\:flex-row {
flex-direction: row;
}
@ -1298,6 +1323,10 @@ video {
}
@media (min-width: 768px) {
.md\:max-w-md {
max-width: 28rem;
}
.md\:bg-transparent {
background-color: transparent;
}
@ -1324,6 +1353,12 @@ video {
}
}
@media (min-width: 1280px) {
.xl\:max-w-screen-xl {
max-width: 1280px;
}
}
@media (prefers-color-scheme: dark) {
.dark\:border-gray-600 {
--tw-border-opacity: 1;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -9,10 +9,6 @@ use header::Header;
pub fn Layout() -> Element {
rsx! {
meta {
name: "description",
content: "Explore Tuan-Dat Tran's personal website featuring his CV, publications, projects, and consulting services. Get insights into his professional journey and connect for collaboration opportunities.",
}
div {
class: "flex flex-col min-h-screen" ,
Header {},

View File

@ -60,6 +60,10 @@ fn App() -> Element {
});
rsx! {
meta {
name: "robots",
content: "noindex",
},
div {
class: "bg-white dark:bg-gray-900 min-h-screen",
Router::<Route> {},