feat: Set up Eleventy and restructure project
Install and configure Eleventy for static site generation. - Reorganized project directories for Eleventy conventions. - Created base.njk, header.html, and footer.html for modularity. - Wrote the initial landing page content in index.njk.
This commit is contained in:
38
index.html
38
index.html
@@ -5,24 +5,18 @@
|
||||
<title>Derek L. Seitz - Portfolio</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
<link rel="stylesheet" href="/styles/styles.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!--? The flow and layout for this page should have a similar feel to "https://dribbble.com/shots/26383872-AI-Assistant-Website-Landing-Page" in that it flows smoothly, isn't overwhelming for the user, uses strategic coloring as a highlight (and not a domination). For the user, it needs to feel effortless to absorb the quality being presented. -->
|
||||
<!--*Additionally, it would be a good idea to reword some of the pitch to highlight and emphasize the collaborative approach being taken to understand the client's needs, their dynamic with their own customers, and how I can help them meet those needs through my work. Something like:
|
||||
“Working closely with you to understand your unique business and customers…”
|
||||
“Together, we’ll craft a website that reflects your vision and meets your audience’s needs…”
|
||||
“I’m here not just to build, but to partner with you in your growth journey…” -->
|
||||
|
||||
<!-- ↓ Start Header ↓ -->
|
||||
<header class="main-header">
|
||||
|
||||
<!-- ↓ Start Nav ↓ -->
|
||||
|
||||
<nav class="main-nav">
|
||||
<ul class="nav-list">
|
||||
<li class="nav-item nav-logo"><a href="#home">Derek L. Seitz</a></li>
|
||||
<li class="nav-item"><a href="#about">About</a></li>
|
||||
<li class="nav-item portfolio-dropdown"><a href="#portfolio">Portfolio</a></li>
|
||||
<li class="nav-item"><a href="#contact">Contact</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
||||
<!-- ↓ Start Main ↓ -->
|
||||
<main>
|
||||
@@ -92,20 +86,6 @@
|
||||
</div>
|
||||
</main>
|
||||
<hr class="footer-separator">
|
||||
<footer>
|
||||
|
||||
<ul class="footer-links">
|
||||
<li><a href="#home">Back to Top</a></li>
|
||||
<li><a href="#about">About</a></li>
|
||||
<li><a href="#portfolio">Portfolio</a></li>
|
||||
<li><a href="#contact">Contact</a></li>
|
||||
</ul>
|
||||
<ul class="external-links">
|
||||
<li><a href="https://linkedin.com/in/dereklseitz" target="_blank">Connect on LinkedIn</a></li>
|
||||
<li><a href="https://git.dsnet.pro/dereklseitz" target="_blank">My Project Repos</a></li>
|
||||
</ul>
|
||||
<p>© 2025, Derek L.Seitz</p>
|
||||
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user