diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..0aa44d9 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,5 @@ + repos: + - repo: https://github.com/psf/black + rev: stable + hooks: + - id: black diff --git a/company_site/public/static/public/videos/main.mp4 b/company_site/public/static/public/videos/main.mp4 new file mode 100755 index 0000000..21c020d Binary files /dev/null and b/company_site/public/static/public/videos/main.mp4 differ diff --git a/company_site/public/templates/base.html b/company_site/public/templates/base.html index bb2bbe6..e8c761d 100644 --- a/company_site/public/templates/base.html +++ b/company_site/public/templates/base.html @@ -25,6 +25,51 @@ color: white; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); } + + .hero { + + height: 60vh; + display: flex; + align-items: center; + justify-content: center; + flex-direction: column; + color: white; + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); + } + + /* Video styling */ + .hero video { + position: absolute; + top: 50%; + left: 50%; + height: 60vh; + width: 100%; + height: 100%; + object-fit: cover; + transform: translate(-50%, -50%); + z-index: -1; /* Place the video behind the content */ + opacity: 0.7; /* Adjust opacity to darken the video */ + } + + /* Overlay to darken the video */ + .hero::after { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: rgba(0, 0, 0, 0.5); /* Adjust the opacity here */ + z-index: -1; /* Place the overlay behind the content */ + } + + /* Hero content styling */ + .hero-content { + z-index: 1; /* Ensure content is above the video and overlay */ + color: white; + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); + } + .hero-section h1 { font-size: 4rem; font-weight: bold; diff --git a/company_site/public/templates/public/new_index.html b/company_site/public/templates/public/new_index.html index 6d61020..3729a2a 100644 --- a/company_site/public/templates/public/new_index.html +++ b/company_site/public/templates/public/new_index.html @@ -1,11 +1,21 @@ {% extends "base.html" %} +{% load static %} {% block content %} -
-

AI ML Operations, LLC

-
  -

Taking AI and ML from concept to Production

+
+ + + + +
+

AI ML Operations, LLC

+

Taking concepts to production

+ +
diff --git a/requirements.txt b/requirements.txt index 9462685..f0264d0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,17 @@ asgiref==3.7.2 +cfgv==3.4.0 +distlib==0.3.9 Django==5.0 +django-enum==2.1.0 +django-phonenumber-field==8.0.0 +django-recaptcha==4.0.0 +filelock==3.17.0 +identify==2.6.9 +nodeenv==1.9.1 +phonenumbers==9.0.0 +platformdirs==4.3.6 +pre_commit==4.1.0 +PyYAML==6.0.2 sqlparse==0.4.4 typing_extensions==4.8.0 -django-enum -django-recaptcha -django-phonenumber-field[phonenumbers] +virtualenv==20.29.3