24 lines
441 B
HTML
24 lines
441 B
HTML
{% extends 'base.html' %}
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
|
|
<link rel="stylesheet" href="{% static 'css/landing.css' %}">
|
|
|
|
<section class="landing-page">
|
|
|
|
<h1>
|
|
Discover the Future of Nepali E-Commerce 🚀
|
|
</h1>
|
|
|
|
<p>
|
|
Join thousands of users exploring modern digital shopping.
|
|
</p>
|
|
|
|
<button onclick="showWelcome()">
|
|
Get Started
|
|
</button>
|
|
|
|
</section>
|
|
|
|
{% endblock %} |