Skip to content

Commit

Permalink
Update designs, logos, accessibility functions and designs, contact a…
Browse files Browse the repository at this point in the history
…nd personnel info, etc
  • Loading branch information
Dae Sanghwi committed Sep 15, 2024
1 parent 3e13eab commit 201e4c3
Show file tree
Hide file tree
Showing 5 changed files with 70 additions and 9 deletions.
7 changes: 3 additions & 4 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,19 +45,18 @@
<section class="about">
<h1>About Us</h1>
<p>We are a team of passionate developers dedicated to creating high-quality software solutions.</p>
<p>YeonSphere and its projects are currently personal, completely unpaid and free projects developed solely by the owner, Jeremy Matlock (also known as Dae Sanghwi).</p>
<div class="team-grid">
<div class="team-member">
<h3>Dae Sanghwi (대상휘)</h3>
<h3>Jeremy Matlock (Dae Sanghwi / 대상휘)</h3>
<p>Lead Developer / Owner</p>
<p>Also known as: Dae, daedaevibin, DaeDae<3</p>
</div>
</div>
<div class="github-projects">
<h2>Our Projects</h2>
<ul>
<li><a href="https://github.com/YeonSphere/project1">Project 1</a></li>
<li><a href="https://github.com/YeonSphere/project2">Project 2</a></li>
<li><a href="https://github.com/YeonSphere/project3">Project 3</a></li>
<li><a href="https://github.com/YeonSphere/Nexus">Nexus Browser</a> <span class="project-status">(In progress)</span></li>
</ul>
</div>
</section>
Expand Down
16 changes: 16 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,22 @@ <h3>Optimized Performance</h3>
</div>
</div>
</section>
<section id="featured-project" class="featured-project">
<div class="container">
<h2>Featured Project: Nexus Browser</h2>
<p>We're currently developing a modern web browser with advanced features like ad blocking and customizable themes. AI-powered features are postponed until we can obtain proper hardware and resources.</p>
<ul class="project-features">
<li>Tab management</li>
<li>Bookmarking</li>
<li>Downloads</li>
<li>Ad blocking</li>
<li>AI-powered search (postponed)</li>
</ul>
<p>For inquiries or to join our community, you can contact any YeonSphere member or join our Discord server below.</p>
<a href="https://github.com/YeonSphere/Nexus" class="cta-button">View on GitHub</a>
<a href="https://discord.gg/uYJr9ZWQF4" class="discord-button">Join our Discord</a>
</div>
</section>
</main>
<footer>
<div class="footer-content">
Expand Down
4 changes: 2 additions & 2 deletions privacy-policy.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
<main id="main-content">
<section class="privacy-policy">
<h1>Privacy Policy</h1>
<p>Last updated: [Date]</p>
<p>This Privacy Policy describes how YeonSphere ("we", "us", or "our") collects, uses, and shares your personal information when you use our website (https://yeonsphere.github.io).</p>
<p>Last updated: March 16, 2024</p>
<p>This Privacy Policy describes how YeonSphere, a personal project of Jeremy Matlock (also known as Dae Sanghwi), ("we", "us", or "our") collects, uses, and shares your personal information when you use our website (https://yeonsphere.github.io).</p>

<h2>Information We Collect</h2>
<p>We collect information you provide directly to us, such as when you fill out a contact form or subscribe to our newsletter.</p>
Expand Down
6 changes: 3 additions & 3 deletions sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://yeonsphere.github.io/</loc>
<lastmod>2024-03-15</lastmod>
<lastmod>2024-03-16</lastmod>
<changefreq>monthly</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>https://yeonsphere.github.io/about.html</loc>
<lastmod>2024-03-15</lastmod>
<lastmod>2024-03-16</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>https://yeonsphere.github.io/contact.html</loc>
<lastmod>2024-03-15</lastmod>
<lastmod>2024-03-16</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
Expand Down
46 changes: 46 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,52 @@ footer {
color: var(--highlight-color);
}

.project-status {
font-size: 0.9em;
color: var(--highlight-color);
margin-left: 0.5rem;
}

.featured-project {
background-color: var(--card-bg);
padding: 4rem 0;
margin-top: 4rem;
}

.project-features {
list-style-type: none;
padding: 0;
margin: 2rem 0;
display: flex;
flex-wrap: wrap;
gap: 1rem;
}

.project-features li {
background-color: var(--accent-color);
color: var(--text-color);
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.9em;
}

.discord-button {
background-color: #7289DA;
color: var(--text-color);
padding: 0.8rem 1.5rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
margin-left: 1rem;
}

.discord-button:hover {
background-color: #5E78D1;
transform: translateY(-2px);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
.nav-links {
display: none;
Expand Down

0 comments on commit 201e4c3

Please sign in to comment.