Skip to content

Commit 3cf4660

Browse files
committed
update pages
1 parent f929d24 commit 3cf4660

File tree

17 files changed

+75
-103
lines changed

17 files changed

+75
-103
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: "Auto Format Issue Title"
2+
3+
on:
4+
issues:
5+
types: [opened, labeled]
6+
permissions:
7+
issues: write
8+
9+
jobs:
10+
format_title:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Format issue title
14+
uses: recursivezero/template/.github/actions/[email protected]
15+
with:
16+
prefix: TZD
17+
dry_run: false
18+
env:
19+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

astro.config.mjs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ export default defineConfig({
2727
})
2828
],
2929
//adapter: node({ mode: "standalone" }),
30-
//output: "static",
31-
output: "server",
32-
adapter: awsAmplify(),
30+
output: "static",
3331
build: {
3432
format: "directory",
3533
assets: "assets"

public/theme.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
(function () {
2+
const savedTheme = localStorage.getItem("theme");
3+
console.log("Saved theme:", savedTheme);
4+
if (savedTheme) {
5+
document.documentElement.setAttribute("data-theme", savedTheme);
6+
}
7+
})();

src/assets/images/about.jpg

367 KB
Loading

src/assets/images/contact-us.jpeg

27.1 KB
Loading
440 KB
Loading

src/assets/images/workplace.jpg

2.25 MB
Loading

src/assets/styles/globals.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
html {
2222
color-scheme: light dark;
2323
height: 100%;
24-
font-family: "Mudra";
2524

2625
font-family: system-ui, sans-serif;
2726
scroll-behavior: smooth;
@@ -146,9 +145,10 @@
146145
.yellowBtnHover:hover {
147146
background-color: #b89405;
148147
}
148+
149149
.clipped-logo {
150150
position: relative;
151151
-webkit-clip-path: inset(30px 10px 30px 10px);
152152
clip-path: inset(30px 10px 30px 10px);
153153
}
154-
}
154+
}

src/components/AboutSection.astro

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
import image from "@/assets/images/about.jpg";
3+
import { Image } from "astro:assets";
4+
---
5+
16
<section>
27
<div class="w-full px-4 py-8 md:px-6 md:py-12 lg:px-8">
38
<div class="mx-auto">
@@ -7,9 +12,10 @@
712
</h1>
813
<div class="flex flex-col gap-[1.5rem] lg:flex-row lg:justify-between lg:gap-[1.2rem] xl:gap-[3rem]">
914
<figure class="basis-[55%] lg:h-[500px]">
10-
<img
11-
src="https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?crop=entropy&cs=srgb&fm=jpg&ixid=M3wzNDk5MjB8MHwxfHNlYXJjaHw0MXx8VGVjaG5vbG9neXxlbnwwfHx8fDE3MDE2MTQ0NTd8MA&ixlib=rb-4.0.3&q=85"
12-
alt="person working on a laptop "
15+
<Image
16+
src={image}
17+
width={800}
18+
alt="person working on a laptop"
1319
class="h-[250px] w-full rounded-xl object-cover md:h-[500px] lg:h-full"
1420
/>
1521
</figure>

src/components/AppsSimplifySection.astro

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
import workplace from "@/assets/images/workplace.jpg";
3+
import { Image } from "astro:assets";
4+
---
5+
16
<section>
27
<div class="p-[20px] lg:py-[50px]">
38
<div class="mx-auto">
@@ -11,9 +16,10 @@
1116
<div class="section-description flex-row-reverse items-start justify-between gap-[20px] lg:flex">
1217
<div class="section-image mb-[10px] h-[150px] basis-[50%] md:h-[300px]">
1318
<figure>
14-
<img
15-
src="https://images.unsplash.com/photo-1563986768494-4dee2763ff3f?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3wzNDk5MjB8MHwxfHNlYXJjaHw0NXx8VGVjaG5vbG9neXxlbnwwfHx8fDE3MDE2MTQ0NTh8MA&ixlib=rb-4.0.3&q=80&w=1080"
16-
alt=""
19+
<Image
20+
src={workplace}
21+
width={400}
22+
alt="workplace"
1723
class="h-[150px] w-full rounded-[10px] object-cover md:h-[300px]"
1824
/>
1925
</figure>

0 commit comments

Comments
 (0)