TechnixCRM is a beautifully designed front-end website project for a CRM (Customer Relationship Management) platform. The layout, aesthetics, and user flows are crafted to reflect a real-world SaaS product with marketing, sales, and support capabilities.
This is perfect as a landing page demo, a prototype for pitching a CRM solution, or a starter UI for developers building CRM systems.
- [Features]
- [How to Run & Use this Project]
- [Tech Stack]
- [Credits]
- [Badges]
βοΈ Sticky navbar with gradient logo branding
βοΈ Hero section with CTA buttons and animated banner
βοΈ Feature carousel using glass morphism UI style
βοΈ 12 detailed CRM feature cards with icons
βοΈ Interactive vertical sidebar for CRM modules
βοΈ Fully responsive layout with media queries
βοΈ Contact and footer section for branding
βοΈ Fast loading with zero external JS frameworks
TechnixCRM is a front-end project that runs entirely in your browserβno dependencies or build tools needed.
- Rename the file
!DOCTYPE html.txt
toindex.html
. - Double-click
index.html
to launch it in your browser.
- Open the project folder in Visual Studio Code.
- Install the Live Server extension (if not already).
- Right-click
index.html
β select "Open with Live Server" for real-time preview.
Once the page loads:
- Use the sticky navigation header to jump between
Home
,Features
,Contact
, etc. - Click on Book a Demo or Free Trial buttons to simulate call-to-actions.
- Scroll down to explore beautifully animated sections like:
- πΌ Lead Capture
- β Task Assignment
- π³ Payment Tracking
- π’ Marketing Automation
- Play with the glass-style slider to visually experience CRM benefits.
- On mobile devices, test how everything responsively adjusts for smaller screens.
Tech | Purpose |
---|---|
HTML5 | Page structure |
CSS3 | Styling and layout |
Google Fonts | Custom typography (Poppins, Open Sans) |
JavaScript (Vanilla) | Minor interactions (optional future enhancement) |
Responsive Design | Mobile-friendly layout via media queries |
Thanks to the following people for their contributions:
- π§ @MukundXplore
- βοΈ @TheCodeCipher
- π οΈ @Ark0B
Design & Development
- π§ CRM Inspiration: TechnixCRM
- πΈ Graphics & Icons: TechnixCRM.com and public SVG sources
- π Fonts: Google Fonts (Poppins, Open Sans)
<header class="sticky-header">
<nav class="navbar">
<a href="https://neo-athelios.github.io/WebDash/" class="logo">
<img src="logo.png" alt="TechnixCRM Logo">
<span class="logo-text"><pre> Technix - CRM </pre></span>
</a>
<ul class="nav-links">
<li><a href="#home" class="active">Home</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#footer">Quick Links</a></li>
<li><a href="http://app.technixcrm.com/login" class="btn-primary">Login</a></li>
</ul>
</nav>
</header>
π Explanation:
This code creates a sticky header with a branded logo and navigation menu. The sticky-header
class ensures it stays on top while scrolling. The btn-primary
class styles the login button.
<section id="home" class="hero">
<h1><span class="highlight">The Foundation for Building and Retaining Customer Relationships</span></h1>
<p>Generate leads, track prospects, avail opportunities, close deals and retain clients...</p>
<img src="https://technixcrm.com/assets/images/banner-img.gif" alt="CRM Banner">
</section>
π Explanation:
This section forms the main hero area, including a headline, subtext, and animated banner. The highlight
class uses a text gradient to draw attention.
<div class="slider-container">
<div class="slider">
<div class="slide slide-1">
<div class="glass-card">
<h2>Increase Sales</h2>
<ul>
<li>Target new customers</li>
<li>Improve conversion rate</li>
</ul>
</div>
</div>
<!-- More slides -->
</div>
</div>
π Explanation:
This is a glass-style sliding component that shows key selling points in visually engaging panels. Each slide
uses a linear gradient background with blur effects from .glass-card
.
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">π</div>
<h3>Lead Capture</h3>
<p>Automatically gather and organize leads from various channels...</p>
</div>
<!-- More feature cards -->
</div>
π Explanation:
This is a responsive grid of feature cards. Each card uses a box-shadow and icon header, perfect for explaining key modules like lead capture, task management, or payment tracking.
<div class="below-header-buttons">
<a href="#" class="btn btn-primary">Book a Demo</a>
<a href="#" class="btn btn-outline">Free Trial</a>
</div>
π Explanation:
These are floating CTA buttons that stay right below the navbar. The btn-primary
is solid blue, and btn-outline
has a bordered, subtle design.
- Mobile Responsiveness