Skip to content

Commit ac54980

Browse files
feat: initial src commit
1 parent fbaabca commit ac54980

File tree

193 files changed

+32208
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

193 files changed

+32208
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Build & Deploy Site
2+
3+
on:
4+
push:
5+
branches: [main]
6+
7+
permissions:
8+
contents: write
9+
10+
jobs:
11+
build-and-deploy:
12+
runs-on: ubuntu-latest
13+
14+
defaults:
15+
run:
16+
working-directory: .
17+
18+
steps:
19+
- name: Checkout repository
20+
uses: actions/checkout@v4
21+
22+
- name: Setup Node.js
23+
uses: actions/setup-node@v4
24+
with:
25+
node-version: "22"
26+
27+
- name: Install dependencies
28+
working-directory: src/
29+
run: npm ci
30+
31+
- name: Build Quartz
32+
working-directory: src/
33+
run: npx quartz build
34+
35+
- name: Deploy to GitHub Pages
36+
uses: peaceiris/actions-gh-pages@v3
37+
with:
38+
github_token: ${{ secrets.GITHUB_TOKEN }}
39+
publish_dir: src/public

src/.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

src/.node-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v22.16.0

src/.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
engine-strict=true

src/.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
public
2+
node_modules
3+
.quartz-cache

src/.prettierrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"printWidth": 100,
3+
"quoteProps": "as-needed",
4+
"trailingComma": "all",
5+
"tabWidth": 2,
6+
"semi": false
7+
}

src/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 CSSASBU
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

src/content/AboutUs.md

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
2+
3+
<style>
4+
.team-container {
5+
display: flex;
6+
flex-wrap: wrap;
7+
justify-content: center;
8+
gap: 2em;
9+
margin-top: 2em;
10+
}
11+
12+
.member {
13+
flex: 1 1 200px; /* responsive width — fits 2-3 per row */
14+
max-width: 300px;
15+
text-align: center;
16+
padding: 1em;
17+
border-radius: 10px;
18+
transition: transform 0.2s ease, box-shadow 0.2s ease;
19+
}
20+
21+
.member:hover {
22+
transform: translateY(-5px);
23+
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
24+
}
25+
26+
.member img {
27+
width: 100%;
28+
max-width: 180px;
29+
height: 180px;
30+
object-fit: cover;
31+
border-radius: 50%; /* makes images round */
32+
margin-bottom: 1em;
33+
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
34+
}
35+
36+
.member .name {
37+
font-weight: bold;
38+
font-size: 1.1em;
39+
margin-bottom: 0.3em;
40+
}
41+
42+
.member .title {
43+
font-size: 0.9em;
44+
}
45+
46+
/* Responsive adjustments */
47+
@media (max-width: 700px) {
48+
.member {
49+
flex: 1 1 100%;
50+
}
51+
}
52+
</style>
53+
54+
<div class="team-container">
55+
<div class="member">
56+
<img src="team/1.jpg" alt="Sadra Seyedtabaei">
57+
<div class="name">Sadra Seyedtabaei</div>
58+
<div class="title">Position</div>
59+
</div>
60+
<div class="member">
61+
<img src="team/1.jpg" alt="Mohammad Sajjad Zanganeh">
62+
<div class="name">Mohammad Sajjad Zanganeh</div>
63+
<div class="title">Position</div>
64+
</div>
65+
<div class="member">
66+
<img src="team/1.jpg" alt="Amin Ghoorchian">
67+
<div class="name">Amin Ghoorchian</div>
68+
<div class="title">Position</div>
69+
</div>
70+
<div class="member">
71+
<img src="team/1.jpg" alt="Shayan Shahrabi">
72+
<div class="name">Shayan Shahrabi</div>
73+
<div class="title">Position</div>
74+
</div>
75+
<div class="member">
76+
<img src="team/1.jpg" alt="Ali Taherzadeh">
77+
<div class="name">Ali Taherzadeh</div>
78+
<div class="title">Position</div>
79+
</div>
80+
<div class="member">
81+
<img src="team/1.jpg" alt="Mehrdad Shirvani">
82+
<div class="name">Mehrdad Shirvani</div>
83+
<div class="title">Position</div>
84+
</div>
85+
<div class="member">
86+
<img src="team/1.jpg" alt="Ali Nadi">
87+
<div class="name">Ali Nadi</div>
88+
<div class="title">Position</div>
89+
</div>
90+
<div class="member">
91+
<img src="team/1.jpg" alt="AmirAli Araghi">
92+
<div class="name">AmirAli Araghi</div>
93+
<div class="title">Position</div>
94+
</div>
95+
<div class="member">
96+
<img src="team/1.jpg" alt="Ehsan Habibagahi">
97+
<div class="name">Ehsan Habibagahi</div>
98+
<div class="title">Position</div>
99+
</div>
100+
<div class="member">
101+
<img src="team/1.jpg" alt="Hirad Torabi">
102+
<div class="name">Hirad Torabi</div>
103+
<div class="title">Position</div>
104+
</div>
105+
</div>

0 commit comments

Comments
 (0)