commit 502bbae2ff4ad350e92abbe3ed4f96acc39e1ad3 Author: Jeff Emmett Date: Tue Mar 17 15:18:01 2026 -0700 Initial site: Elle Sam - storytelling meets neuroaesthetics Immersive single-page site with neural network canvas animation, scroll reveal effects, and Traefik-ready Docker deployment. Sections: Hero, About, Services, Approach, Work (Cineasthesia + Out The Box Creative), Manifesto, Connect. Co-Authored-By: Claude Opus 4.6 diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e11a8e9 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,4 @@ +FROM nginx:alpine +COPY index.html /usr/share/nginx/html/index.html +COPY nginx.conf /etc/nginx/conf.d/default.conf +EXPOSE 80 diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..9668058 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,24 @@ +services: + elle-o-elle: + build: . + container_name: elle-o-elle + restart: unless-stopped + networks: + - traefik + labels: + - "traefik.enable=true" + - "traefik.http.routers.elle-o-elle.rule=Host(`elle-o-elle.lol`) || Host(`www.elle-o-elle.lol`)" + - "traefik.http.routers.elle-o-elle.entrypoints=websecure" + - "traefik.http.routers.elle-o-elle.tls.certresolver=cloudflare" + - "traefik.http.routers.elle-o-elle.tls.domains[0].main=elle-o-elle.lol" + - "traefik.http.routers.elle-o-elle.tls.domains[0].sans=*.elle-o-elle.lol" + - "traefik.http.services.elle-o-elle.loadbalancer.server.port=80" + # Redirect www to apex + - "traefik.http.middlewares.elle-www-redirect.redirectregex.regex=^https://www\\.elle-o-elle\\.lol/(.*)" + - "traefik.http.middlewares.elle-www-redirect.redirectregex.replacement=https://elle-o-elle.lol/$${1}" + - "traefik.http.middlewares.elle-www-redirect.redirectregex.permanent=true" + - "traefik.http.routers.elle-o-elle.middlewares=elle-www-redirect" + +networks: + traefik: + external: true diff --git a/index.html b/index.html new file mode 100644 index 0000000..ca3aeb4 --- /dev/null +++ b/index.html @@ -0,0 +1,1291 @@ + + + + + + Elle Sam | Cineasthesia & Out The Box Creative + + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

Storytelling · Neuroaesthetics · Human Potential

+

Where Story
Meets the Brain

+

+ Award-winning storyteller, filmmaker, and immersive artist crafting narratives that awaken the senses and unlock human potential. +

+ + Explore the Work + + + + +
+
+
+
+
+ + +
+
+
+
+ Elle Sam — San Francisco +
+
+ +

The Nexus of
Art & Science

+

+ Elle Sam is an award-winning writer, director, artist, storyteller, and healer with over a decade of experience crafting immersive narratives across film, television, AR/VR, interactive art installations, and digital media. +

+

+ Holding triple degrees from Rice University in Neuroscience, Sociology, and Visual & Dramatic Arts—with further training at Dublin's Gaiety School of Acting—Elle brings a rare synthesis of scientific understanding and artistic expression to every project. +

+

+ Her practice integrates psychology, somatic therapeutic modalities, neuroscience, sensory wellness practices, and West & Central African ancestral knowledge to support seekers navigating the complex human condition. +

+
+ Neuroscience + Film & TV + AR / VR + Somatic Healing + Sociology + Immersive Art + Ancestral Knowledge + Digital Media +
+
+
+
+ + +
+
+ +

Immersive Narratives
That Transform

+

+ At the intersection of storytelling and neuroscience, we create experiences that don't just entertain—they rewire how people feel, see, and understand themselves. +

+
+
+
+ + + + + +

Film & Television

+

Writing and directing narrative works that weave neuroscientific insight into compelling stories—creating cinema that resonates at the deepest levels of human experience.

+
+
+ + + + + + +

Immersive Installations

+

Multi-sensory art experiences that engage the body and brain—AR, VR, and physical installations designed using principles of neuroaesthetics to catalyze transformation.

+
+
+ + + + +

Somatic Storytelling

+

Narrative healing practices that merge storytelling with somatic therapy and ancestral wisdom—guiding seekers through embodied experiences of self-discovery and renewal.

+
+
+
+ + +
+
+
+ +

Science-Informed Creativity

+

+ Every project begins with understanding—how the brain processes beauty, narrative, and sensation—then translates that knowledge into art that moves people. +

+
+
+
+
01
+

Listen

+

Deep inquiry into the story's emotional and neurological terrain. What does the audience need to feel?

+
+
+
02
+

Map

+

Charting the neuroaesthetic pathways—how sensory elements, narrative arcs, and somatic cues interweave.

+
+
+
03
+

Create

+

Crafting immersive narratives across mediums—film, installation, digital, or embodied experience.

+
+
+
04
+

Activate

+

Delivering experiences that don't just reach the mind but transform the whole person.

+
+
+
+
+ + +
+
+ +

Two Vessels,
One Vision

+ +
+
+
+
+
+

Cineasthesia

+

Immersive Narrative Studio

+

+ A creative practice rooted in the belief that cinema and art can be medicine. Cineasthesia—a fusion of cinema and synesthesia—creates work that blurs the boundaries between senses, mediums, and states of consciousness. +

+

+ Through film, AR/VR, and interactive installations, Cineasthesia produces narratives that engage the nervous system as much as the imagination—stories designed to heal, awaken, and expand. +

+ Est. 2014 — San Francisco Bay Area +
+
+ +
+
+
+
+
+

Out The Box Creative Group

+

Art Collective & Media Group

+

+ Co-founded with Mike Boakye in Accra, Ghana, Out The Box Creative bridges the African diaspora through collaborative art-making and storytelling. The collective centers West and Central African ancestral knowledge as a living creative force. +

+

+ From Ghana to the Bay Area and beyond, Out The Box produces media, installations, and community experiences that honor heritage while pushing creative boundaries into uncharted territory. +

+ Est. 2019 — Accra, Ghana & San Francisco +
+
+
+
+ + +
+
+ “The brain doesn’t separate beauty from meaning, sensation from story, healing from art. Neither do I.” +
+

— Elle Sam

+
+ + +
+
+ +

Let’s Create
Together

+

+ Whether you’re seeking a collaborator for an immersive project, a speaker on neuroaesthetics and storytelling, or a guide through somatic narrative practices—reach out. +

+ +
+
+ + +
+ +
+ + + + + diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..d7657a2 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,28 @@ +server { + listen 80; + server_name elle-o-elle.lol www.elle-o-elle.lol; + + root /usr/share/nginx/html; + index index.html; + + location / { + try_files $uri $uri/ /index.html; + } + + # Cache static assets + location ~* \.(css|js|jpg|jpeg|png|gif|ico|svg|woff|woff2)$ { + expires 30d; + add_header Cache-Control "public, immutable"; + } + + # Security headers + add_header X-Frame-Options "SAMEORIGIN" always; + add_header X-Content-Type-Options "nosniff" always; + add_header X-XSS-Protection "1; mode=block" always; + add_header Referrer-Policy "strict-origin-when-cross-origin" always; + + # Gzip + gzip on; + gzip_types text/plain text/css application/javascript text/html; + gzip_min_length 256; +}