A minimalistic, modular website for LevelUp Labs - AI Advisory & Implementation specialists.
labs_website/
├── index.html # Main landing page
├── blog.html # Blog listing page
├── resources.html # Resources listing page
├── css/
│ └── styles.css # Main stylesheet
├── js/
│ └── script.js # JavaScript functionality
├── blog/
│ └── *.html # Individual blog posts
├── resources/
│ └── *.html # Individual resource pages
├── components/
│ ├── header.html # Shared header component
│ └── footer.html # Shared footer component
├── templates/
│ ├── new-blog-post.html # Template for new blog posts
│ └── new-resource.html # Template for new resources
└── README.md
- Responsive Design: Works on all devices
- Modular Structure: Easy to add new content
- Contact Form: Comprehensive questionnaire that opens email client
- Blog System: Individual blog posts with metadata
- Resources System: Categorized resources with individual pages
- Clean Navigation: Smooth scrolling between sections
- SEO Friendly: Proper meta tags and semantic HTML
-
Copy
templates/new-blog-post.htmltoblog/your-post-name.html -
Replace the following placeholders:
BLOG_TITLE: Your blog post titlePUBLISH_DATE: Publication dateCATEGORY: Post category (Strategy, Implementation, etc.)READ_TIME: Estimated reading timeLEAD_PARAGRAPH: Opening paragraphCTA_TITLE: Call-to-action titleCTA_DESCRIPTION: Call-to-action description
-
Add the new post to
blog.htmlin the blog-grid section:
<article class="blog-post-card">
<h2><a href="blog/your-post-name.html">Your Post Title</a></h2>
<div class="post-meta">
<span class="date">Date</span>
<span class="category">Category</span>
</div>
<p>Brief description...</p>
<a href="blog/your-post-name.html" class="read-more">Read More</a>
</article>-
Copy
templates/new-resource.htmltoresources/your-resource-name.html -
Replace the following placeholders:
RESOURCE_TITLE: Your resource titleRESOURCE_TYPE: Type (Guide, Tool, Template, etc.)READ_TIME: Estimated reading/completion timeRESOURCE_DESCRIPTION: Brief descriptionCTA_TITLE: Call-to-action titleCTA_DESCRIPTION: Call-to-action description
-
Add the new resource to
resources.htmlin the appropriate category section:
<div class="resource-card">
<h3><a href="resources/your-resource-name.html">Your Resource Title</a></h3>
<p>Brief description...</p>
<div class="resource-meta">
<span class="resource-type">Type</span>
<span class="resource-length">Duration</span>
</div>
</div>- AI Advisory: Strategic guidance on AI vision and implementation
- Hands-on Implementation: Engineering team augmentation and direct implementation
- Corporate Training: Comprehensive training programs and workshops
- Strategic Investments: Investment opportunities in AI companies
- Email: [email protected]
- Website: Local development server
To run the website locally:
- Navigate to the project directory
- Start a local server:
python3 -m http.server 8000 - Open your browser to
http://localhost:8000
- HTML5: Semantic markup
- CSS3: Modern styling with Grid and Flexbox
- Vanilla JavaScript: Form handling and smooth scrolling
- No frameworks: Lightweight and fast loading
- Chrome (latest)
- Firefox (latest)
- Safari (latest)
- Edge (latest)
© 2024 LevelUp Labs. All rights reserved.