Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions .github/ISSUE_TEMPLATE/✅-general-task.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,29 @@ name: "✅ General Task"
about: A general task or to-do item.
title: "[TASK] - "
labels: task
assignees: ''
assignees: ""
type: Task

---

**1. What needs to be done?**\
*`A clear description of the task.`*
_`A clear description of the task.`_

```

```

\
**2. Why is this task needed?**\
*`A brief explanation of the reason for this task.`*
_`A brief explanation of the reason for this task.`_

```

```

\
**3. Relevant Information**\
*`Please provide any links, files, or specific text needed to complete the task.`*
_`Please provide any links, files, or specific text needed to complete the task.`_

```

```
18 changes: 12 additions & 6 deletions .github/ISSUE_TEMPLATE/✨-feature-request.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,37 @@ name: "✨ Feature Request"
about: Suggest an idea or new functionality.
title: "[FEATURE] - "
labels: enhancement
assignees: ''
assignees: ""
type: Feature

---

**1. What is the goal of this feature?**\
*`Please describe the new feature you would like. What problem will it solve?`*
_`Please describe the new feature you would like. What problem will it solve?`_

```

```

\
**2. How should it work?**\
*`Provide a step-by-step description of how the feature should work for a user.`*
_`Provide a step-by-step description of how the feature should work for a user.`_

```

```

\
**3. Are there any examples?**\
*`Please link to any other websites or examples that have a similar feature.`*
_`Please link to any other websites or examples that have a similar feature.`_

```

```

\
**4. Is there a deadline?**\
*`Is this feature tied to a specific event or deadline?`*
_`Is this feature tied to a specific event or deadline?`_

```

```
22 changes: 15 additions & 7 deletions .github/ISSUE_TEMPLATE/🐛-bug-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,20 @@ name: "\U0001F41B Bug Report"
about: Something isn't working as expected.
title: "[BUG] - "
labels: bug
assignees: ''
assignees: ""
type: Bug

---

**1. Describe the bug**\
*`A clear and concise description of what the bug is.`*
_`A clear and concise description of what the bug is.`_

```

```

\
**2. Steps to Reproduce**

<pre>
Please list the steps to follow to see the bug:
<em>1. Go to '...'
Expand All @@ -26,22 +28,28 @@ Please list the steps to follow to see the bug:
```

```

\
**3. What should be happening?**\
*`A clear description of what you expected to happen instead.`*
_`A clear description of what you expected to happen instead.`_

```

```

\
**4. Screenshots or Links**\
*`If applicable, add screenshots to help explain your problem. Please also provide a link to the page where the issue is happening.`*
_`If applicable, add screenshots to help explain your problem. Please also provide a link to the page where the issue is happening.`_

```

```

\
**5. Device & Browser (if applicable)**\
*`Device: [e.g., Desktop, iPhone 14]`*
*`Browser: [e.g., Chrome, Safari]`*
_`Device: [e.g., Desktop, iPhone 14]`_
_`Browser: [e.g., Chrome, Safari]`_

```

```
19 changes: 19 additions & 0 deletions .github/workflows/auto-assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Auto Assign
on:
issues:
types: [opened]
pull_request:
types: [opened]
jobs:
run:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- name: "Auto-assign issue"
uses: pozil/auto-assign-issue@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
assignees: Lunchtime52
numOfAssignee: 1
14 changes: 14 additions & 0 deletions .github/workflows/proof-html.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Proof HTML
permissions:
contents: read
pull-requests: write
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: anishathalye/proof-html@v1.1.0
with:
directory: ./
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#Ignore Node modules
node_modules/
60 changes: 60 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<!doctype html>
<html
lang="en"
class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0" />
<title>Pixel Dynasty</title>
<meta
name="description"
content="Pixel Dynasty Development creates professional, modern, and responsive websites that drive growth and establish a strong online presence for small businesses." />
<script src="assets/js/tailwind.config.js"></script>
<script src="https://cdn.tailwindcss.com"></script>
<link
rel="icon"
type="image/png"
href="assets/images/PDFaviconWhite.png"
sizes="48x48" />
<link
rel="preconnect"
href="https://fonts.googleapis.com" />
<link
rel="preconnect"
href="https://fonts.gstatic.com"
crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&display=swap"
rel="stylesheet" />
<script src="assets/js/tailwind.config.js"></script>
<style>
@font-face {
font-family: "Pixeloid Sans";
src: url("/assets/fonts/PixeloidSans-E40en.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
</style>
<style>
body {
font-family: "Inter", sans-serif;
}
</style>
</head>
<body
class="font-sans bg-light-bg text-light-text dark:bg-dark-bg dark:text-dark-text">
<div
id="nav-container"
class="bg-white/80 backdrop-blur-md sticky top-0 z-50 shadow-sm"></div>

<main id="main-content"></main>

<div id="footer-container"></div>

<script
type="module"
src="assets/js/router.js"></script>
</body>
</html>
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
<div align="center">
<img src="./assets/images/PD Logo full.png" alt="logo">
</div>

# Pixel Dynasty Development Website

>This repository contains the source code for the Pixel Dynasty Development landing page and portfolio site.
> This repository contains the source code for the Pixel Dynasty Development landing page and portfolio site.

## Overview

Expand All @@ -22,14 +25,10 @@ Pixel Dynasty Development specializes in building professional, modern, and resp
- **Contact CTA:** Easy email contact for new project inquiries.
- **Custom Branding:** Uses Pixel Dynasty Development logos and imagery.

## Assets

All images and logos are located in the `assets/` directory.


## Contact

For business inquiries, email: [info@pixeldynasty.dev](mailto:info@pixeldynasty.dev)
📧: [info@pixeldynasty.dev](mailto:info@pixeldynasty.dev)

---

© Pixel Dynasty Development. All rights reserved.
Binary file removed assets/AdvantageFosterCareSitePreview.png
Binary file not shown.
Binary file removed assets/TheBloomFoundationSitePreview.png
Binary file not shown.
Binary file added assets/fonts/PixeloidSans-E40en.ttf
Binary file not shown.
Binary file added assets/images/AdvantageFosterCareSitePreview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/customicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Binary file added assets/images/snapshot.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading