-
Analyzing your requirements and generating your app…
-
-
Loading…
+
+
+
Welcome to Your Professional Community
+
Connect, share, and grow with millions of professionals from around the world.
+
Join Now
+
Sign In
-
AppWizzy AI is collecting your requirements and applying the first changes.
-
This page will refresh automatically as the plan is implemented.
-
- Runtime: Django {{ django_version }} · Python {{ python_version }}
- — UTC {{ current_time|date:"Y-m-d H:i:s" }}
-
-
-
-
- Page updated: {{ current_time|date:"Y-m-d H:i:s" }} (UTC)
-
-{% endblock %}
\ No newline at end of file
+
+
+
+
+
+
What is this platform?
+
This is a professional networking platform designed to help you build your career. Share your knowledge, find opportunities, and connect with people who can help you succeed.
+
+
+
+{% endblock %}
diff --git a/core/urls.py b/core/urls.py
index 6299e3d..8e0d0ae 100644
--- a/core/urls.py
+++ b/core/urls.py
@@ -1,7 +1,7 @@
from django.urls import path
-from .views import home
+from .views import index
urlpatterns = [
- path("", home, name="home"),
+ path("", index, name="index"),
]
diff --git a/core/views.py b/core/views.py
index c9aed12..08a8239 100644
--- a/core/views.py
+++ b/core/views.py
@@ -1,25 +1,5 @@
-import os
-import platform
-
-from django import get_version as django_version
from django.shortcuts import render
-from django.utils import timezone
+def index(request):
+ return render(request, "core/index.html")
-def home(request):
- """Render the landing screen with loader and environment details."""
- host_name = request.get_host().lower()
- agent_brand = "AppWizzy" if host_name == "appwizzy.com" else "Flatlogic"
- now = timezone.now()
-
- context = {
- "project_name": "New Style",
- "agent_brand": agent_brand,
- "django_version": django_version(),
- "python_version": platform.python_version(),
- "current_time": now,
- "host_name": host_name,
- "project_description": os.getenv("PROJECT_DESCRIPTION", ""),
- "project_image_url": os.getenv("PROJECT_IMAGE_URL", ""),
- }
- return render(request, "core/index.html", context)
diff --git a/static/css/custom.css b/static/css/custom.css
index 925f6ed..0d83dc3 100644
--- a/static/css/custom.css
+++ b/static/css/custom.css
@@ -1,4 +1,50 @@
-/* Custom styles for the application */
body {
- font-family: system-ui, -apple-system, sans-serif;
+ font-family: 'Lato', sans-serif;
+ background-color: #F3F2EF;
+ color: #333333;
}
+
+h1, h2, h3, h4, h5, h6 {
+ font-family: 'Roboto', sans-serif;
+ font-weight: 700;
+}
+
+.hero {
+ background: linear-gradient(to right, #0A66C2, #70B5F9);
+ color: white;
+ padding: 100px 0;
+ text-align: center;
+}
+
+.hero h1 {
+ font-size: 3.5rem;
+}
+
+.hero p {
+ font-size: 1.25rem;
+ margin-bottom: 30px;
+}
+
+.btn-primary {
+ background-color: #0A66C2;
+ border-color: #0A66C2;
+}
+
+.btn-primary:hover {
+ background-color: #004182;
+ border-color: #004182;
+}
+
+.btn-secondary {
+ background-color: #70B5F9;
+ border-color: #70B5F9;
+}
+
+.btn-secondary:hover {
+ background-color: #4a98d7;
+ border-color: #4a98d7;
+}
+
+.about-section {
+ padding: 60px 0;
+}
\ No newline at end of file