aboutsummaryrefslogtreecommitdiffstats
path: root/src/server/content/about.ts
diff options
context:
space:
mode:
author2024-04-07 19:43:04 +0530
committer2024-04-07 19:43:04 +0530
commit900a707fdcb04e5739126ec2509fdc39fee7491c (patch)
tree427c9155bcbcca013f4c352888d8d88984e4e027 /src/server/content/about.ts
parent0.5.1 (diff)
downloadsudomsg-900a707fdcb04e5739126ec2509fdc39fee7491c.tar
sudomsg-900a707fdcb04e5739126ec2509fdc39fee7491c.tar.gz
sudomsg-900a707fdcb04e5739126ec2509fdc39fee7491c.tar.bz2
sudomsg-900a707fdcb04e5739126ec2509fdc39fee7491c.tar.lz
sudomsg-900a707fdcb04e5739126ec2509fdc39fee7491c.tar.xz
sudomsg-900a707fdcb04e5739126ec2509fdc39fee7491c.tar.zst
sudomsg-900a707fdcb04e5739126ec2509fdc39fee7491c.zip
Rewrote Site in 11ty
Still need to Update the content
Diffstat (limited to 'src/server/content/about.ts')
-rw-r--r--src/server/content/about.ts32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/server/content/about.ts b/src/server/content/about.ts
deleted file mode 100644
index 4a988e3..0000000
--- a/src/server/content/about.ts
+++ /dev/null
@@ -1,32 +0,0 @@
-import Page from "../template/Page.js"
-import metadata from "../metadata.js"
-import { c } from "../template/vdom.js"
-import h from "../template/header.js"
-import schema from "../utils/schema.js"
-import { img, picture, source, div, p, span, ul, li, a } from "../template/html.js"
-
-Page({
- title: "About Me",
- url: "/about",
- content() {
- return c(div, { itemscope: true, itemtype: schema("Person") },
- c(h, { level: 2, itemprop: "name" }, metadata.author.name),
- c(picture, { class: "side" },
- c(source, { srcset: [128, 256, 512].map(width => `${metadata.author.image}?format=png&width=${width} ${width}w`).join(", ") }),
- c(img, { itemprop: "image", alt: "A Photo of me", src: metadata.author.image })
- ),
- c(p, { itemprop: "description" }, "I am an analytical and passionate third year ",
- c(span, { itemprop: "affiliation", itemtype: schema("CollegeOrUniversity"), itemscope: true }, c(span, { itemprop: "name" }, "CHRIST University")),
- " ", c(span, {}, "student"), ` pursuing B. Tech in Computer Engineering in Bengaluru. I am eager to further my knowledge, develop my skills ",
- "and gain experience to convert my interest in computers into a fulfilling career.`),
- c(p, {}, "Contact Details"),
- c(ul, {},
- c(li, {}, c(a, { href: `mailto:${metadata.author.email}`, itemprop: "email" }, "Email")),
- c(li, {}, c(a, { href: "https://github.com/marcthe12", itemprop: "sameas" }, "Github")),
- c(li, {}, c(a, { href: "https://www.linkedin.com/in/marc-pervaz-boocha-200706236/", itemprop: "sameas" }, "LinkedIn")),
- ),
- )
- }
-}).setupRoute()
-
-