diff --git a/.github/workflows/issue-title-formatter.yml b/.github/workflows/issue-title-formatter.yml new file mode 100644 index 0000000..e3370ff --- /dev/null +++ b/.github/workflows/issue-title-formatter.yml @@ -0,0 +1,19 @@ +name: "Auto Format Issue Title" + +on: + issues: + types: [opened, labeled] +permissions: + issues: write + +jobs: + format_title: + runs-on: ubuntu-latest + steps: + - name: Format issue title + uses: recursivezero/template/.github/actions/format-issue-title@v2.5 + with: + prefix: TZD + dry_run: false + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/package.json b/package.json index b4aa1f2..b810f02 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "contributors": [], "timestamp": { "createdOn": "Sun, 07 Jan 2024 00:00:00 +05:30", - "updatedOn": "Sun,11 Aug 2024 00:44:39 +05:30" + "updatedOn": "Sun,15 June 2025 02:10:39 +05:30" }, "type": "module", "funding": { @@ -100,4 +100,4 @@ "prettier-plugin-astro": "0.14.1", "prettier-plugin-tailwindcss": "0.6.8" } -} +} \ No newline at end of file diff --git a/public/theme.js b/public/theme.js new file mode 100644 index 0000000..3578f4a --- /dev/null +++ b/public/theme.js @@ -0,0 +1,7 @@ +(function () { + const savedTheme = localStorage.getItem("theme"); + console.log("Saved theme:", savedTheme); + if (savedTheme) { + document.documentElement.setAttribute("data-theme", savedTheme); + } +})(); diff --git a/src/assets/images/about.jpg b/src/assets/images/about.jpg new file mode 100644 index 0000000..b420289 Binary files /dev/null and b/src/assets/images/about.jpg differ diff --git a/src/assets/images/contact-us.jpeg b/src/assets/images/contact-us.jpeg new file mode 100644 index 0000000..f2fc779 Binary files /dev/null and b/src/assets/images/contact-us.jpeg differ diff --git a/src/assets/images/person-with-laptop.jpg b/src/assets/images/person-with-laptop.jpg new file mode 100644 index 0000000..e771fb0 Binary files /dev/null and b/src/assets/images/person-with-laptop.jpg differ diff --git a/src/assets/images/workplace.jpg b/src/assets/images/workplace.jpg new file mode 100644 index 0000000..cb90657 Binary files /dev/null and b/src/assets/images/workplace.jpg differ diff --git a/src/assets/styles/globals.css b/src/assets/styles/globals.css index f358ba3..a0bf36a 100644 --- a/src/assets/styles/globals.css +++ b/src/assets/styles/globals.css @@ -21,7 +21,6 @@ html { color-scheme: light dark; height: 100%; - font-family: "Mudra"; font-family: system-ui, sans-serif; scroll-behavior: smooth; @@ -146,9 +145,10 @@ .yellowBtnHover:hover { background-color: #b89405; } + .clipped-logo { position: relative; -webkit-clip-path: inset(30px 10px 30px 10px); clip-path: inset(30px 10px 30px 10px); } -} +} \ No newline at end of file diff --git a/src/components/AboutSection.astro b/src/components/AboutSection.astro index 2cf84ba..b646f22 100644 --- a/src/components/AboutSection.astro +++ b/src/components/AboutSection.astro @@ -1,3 +1,8 @@ +--- +import image from "@/assets/images/about.jpg"; +import { Image } from "astro:assets"; +--- +
@@ -7,9 +12,10 @@
- person working on a laptop
diff --git a/src/components/AppsSimplifySection.astro b/src/components/AppsSimplifySection.astro index 6aaf226..e9e7cbe 100644 --- a/src/components/AppsSimplifySection.astro +++ b/src/components/AppsSimplifySection.astro @@ -1,3 +1,8 @@ +--- +import workplace from "@/assets/images/workplace.jpg"; +import { Image } from "astro:assets"; +--- +
@@ -11,9 +16,10 @@
-
diff --git a/src/components/BlogCard.astro b/src/components/BlogCard.astro index 436ac01..92baa9f 100644 --- a/src/components/BlogCard.astro +++ b/src/components/BlogCard.astro @@ -29,7 +29,7 @@ const { url, title, description, image, author, date, height = "auto" } = Astro.

{title}

diff --git a/src/components/ContactSection.astro b/src/components/ContactSection.astro index 0bd7a00..5a7113b 100644 --- a/src/components/ContactSection.astro +++ b/src/components/ContactSection.astro @@ -1,12 +1,18 @@ +--- +import contactUs from "@/assets/images/contact-us.jpeg"; +import { Image } from "astro:assets"; +--- +
- contactus image
diff --git a/src/components/Header.astro b/src/components/Header.astro index 2bcea04..b41603c 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -45,21 +45,6 @@ const isActive = (linkPath: string) => {