From 6201e4d4305e096223297ad662b4f8b9b4383244 Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Tue, 25 Nov 2025 14:46:59 +0000 Subject: [PATCH] Auto commit: 2025-11-25T14:46:59.339Z --- core/__pycache__/urls.cpython-311.pyc | Bin 347 -> 348 bytes core/__pycache__/views.cpython-311.pyc | Bin 1364 -> 397 bytes core/templates/base.html | 7 +- core/templates/core/index.html | 161 +++---------------------- core/urls.py | 4 +- core/views.py | 24 +--- static/css/custom.css | 50 +++++++- 7 files changed, 78 insertions(+), 168 deletions(-) diff --git a/core/__pycache__/urls.cpython-311.pyc b/core/__pycache__/urls.cpython-311.pyc index 1f807fae1897c89361c99c5e868a26d00799b73f..c8b0f6d90c3fef416f4cee20aec6966d75272f10 100644 GIT binary patch delta 86 zcmcc3bccy|IWI340}z-TRL#tt$Xme1nwgi9S~0O{v6;jL1{Cyxje(W3!KFi}BXoxN a1s27NEQ(iH6hAOC@iR4WgJ2O4&>#R!X&5*F delta 85 zcmcb^beoBHIWI340}vcY|CNz7k+*=AB_lsKbz<{kGw}-yDCh$l11o2PONUTL$PBg% ZEbQ1e02;>RSH+*4 zUzDn!2{fugFQX(krwF89lkpaNQEFjnYH>+1$P9&Fy80RUxvBc4Nu_xurTVEAsmY}! z`9=EW`9;~q1&PV2`e0+qGE>Wo^$IF)v4RaO;sELenO7_fBpMj*atlsSzaXu1kz4l) zx9$ZN-OoT_20u;aTLLLriFxVydc_&}MI}I^i;F;B0qbAMP{avhvjd4=95%W6DWy57 lc11iuF34%c20-EiGb1D84F=^4sOSR=Bct922228MA^>(@S=Imm literal 1364 zcmZ`(&1)M+6ra_{dS%J>I!@|TuH%hUh$T{~CE!96oTjQ1oHkCdQ%ZHHPf-Q6#oP5Eq{V!1Q7#*Ku^61OfEk4%~~s}guETzy!YnKoA>c! z|CpMZL_mL+PRlpL2>m0JfI>sz+l$SscSs^=|k4VB6wxYJ2mwh>6 zP1s6a0Xh0B%Et_88>QrbMYzqB#N#E*3Oks3CUHQODRvA@K~k7$;|6iCE(zZu#bJlk z(8(RJK1WUTVt6pV9fEo^GQIeJgpqaJXHRNMhV;}glZK3tBN^en5Q~o7QAND#(>piA zMx+^HvEUS;@pC3}9#TaPq;a2SxGAxj;0&RP639l>kPjiNqhJ8&1AY_l`WecBvKL`< zK_mp-GGfihA=Gg+ss)BI*;w21yRNY^)~upqm`+Labc(T~)l62_EK-D_XmFxoXUC+( zv9ZH61GA!Od6`C{=(;tt(Wqy1VsquT>;5P-9=l@|nMF#b-iU4DnzqgA7Upvgw;tSE z&pj%9yS|;<+IaYA=m{Nfc9(G8LP76tKq2MQk+Efgahls~zxB^Y15iq2p ze1hU%s@P+67IZo#*hj*3LMINxyUY_2H9@DJWy{3I+3Mq}!>U=li}flaG+QI|spl4T zob~hDF>%eyxOE;8-gFVJ3n+TO18bo->ila}J65%hy4+QlU#ly}>PkmVchz)jqo<`_ z{(P+6Xlpn2)BEXH3$5?^ljojY`z`Y<)5;BG^zo;?`Q?6crISo|lj(kPxtsi=lf2$d zUhiF8=v}zfU%GryZ>QE?g*r>Q?ozJ5xODJS`|4MJebZUI)m^+bn2pWI0|cyf_w9L< zIJbYby>RVisS{uA##h^s)e}e(07x&wM(2TX`E06G0Q9V<>X{|ul?i3g0?%(HPYlgf z1`zb;;Me{qqL;+gPk@~&H*I26ExbmrfGYk1-V - {% block title %}Knowledge Base{% endblock %} + + {% block title %}LinkedIn Clone{% endblock %} {% if project_description %} @@ -13,6 +14,10 @@ {% endif %} + + + + {% load static %} {% block head %}{% endblock %} diff --git a/core/templates/core/index.html b/core/templates/core/index.html index faec813..072f06a 100644 --- a/core/templates/core/index.html +++ b/core/templates/core/index.html @@ -1,145 +1,24 @@ -{% extends "base.html" %} +{% extends 'base.html' %} +{% load static %} -{% block title %}{{ project_name }}{% endblock %} - -{% block head %} - - - - -{% endblock %} +{% block title %}Welcome to your Professional Network{% endblock %} {% block content %} -
-
-

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