Initial public push: docs cosmos v4 + AI module + framework groundwork
This is the snapshot the production landing site (nibiru-framework.com) is deployed from. Brings together the recent splash + docs migration to the v4 "Cosmos" design system, the new in-framework AI module, and the framework groundwork that backs the framework-reference extraction. What lands: - docs/: Astro + Starlight site with the v4 dark cosmic palette, GalaxyHero canvas constellation, Mission Control chat (wired to /api/oracle → api.neuronetz.ai via providers.mjs Ollama), 5-panel MMVC stage (Model · AI · Module · Controller · View), translated EN/DE/JA/ES/FR content, PWA + sitemap + llms.txt + Umami analytics. - docs/design-system/: canonical mockup bundle (source/index-v2.html for splash, source/docs-system.html + preview/ for docs, SPEC.md, tokens). - docs/scripts/extraction/framework-reference-v2.md: deep framework reference (~1.6k lines, file:line citations, every public factory and idiom — basis for the LoRA training corpus. - application/module/ai/: AI module with chat / embed / RAG / agent plugins, plus pdoQuery / httpGet / fileRead tools and Modelfile + smoke-test in training/. - application/module/users/: user / ACL / form-factory traits used as the reference plugin pattern for the framework docs. - application/settings/config/database/: schema + seed migrations including the AI module tables (200–203). - Form factory + autogenerator changes the framework-reference-v2 covers. Production secrets stay out: docs/.env, settings.production.ini and ai.production.ini are all gitignored (.example files are in tree). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
181
application/view/mockup/template/less/modules/_header-back.less
Normal file
181
application/view/mockup/template/less/modules/_header-back.less
Normal file
@@ -0,0 +1,181 @@
|
||||
.header-back{
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
padding: 200px 0;
|
||||
margin: 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.header-back-large{
|
||||
padding: 250px 0 270px 0;
|
||||
}
|
||||
|
||||
.header-back-small{
|
||||
padding: 140px 0 70px 0;
|
||||
}
|
||||
|
||||
.header-back-light{
|
||||
color: white;
|
||||
}
|
||||
|
||||
.header-back-full-page{
|
||||
display: table;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
min-height: 600px;
|
||||
position: relative;
|
||||
|
||||
.header-back-container{
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
.header-back-default{
|
||||
background-image: url(../img/backgrounds/6.jpg);
|
||||
background-position: bottom;
|
||||
}
|
||||
|
||||
.header-back-simple{
|
||||
background-image: url(../img/backgrounds/2.jpg);
|
||||
}
|
||||
|
||||
.header-back-bg{
|
||||
background-image: url(../img/backgrounds/1.jpg);
|
||||
}
|
||||
|
||||
.header-back-bg-2{
|
||||
background-image: url(../img/backgrounds/3.jpg);
|
||||
}
|
||||
|
||||
.header-back-bg-3{
|
||||
background-image: url(../img/backgrounds/5.jpg);
|
||||
}
|
||||
|
||||
.header-back-bg-web{
|
||||
background-image: url(../img/backgrounds/8.jpg);
|
||||
}
|
||||
|
||||
.header-back-bg-app{
|
||||
background-image: url(../img/backgrounds/9.jpg);
|
||||
}
|
||||
|
||||
.header-back-bg-soft{
|
||||
background-image: url(../img/backgrounds/10.png);
|
||||
background-position: center bottom;
|
||||
}
|
||||
.header-back-video-trigger-bg {
|
||||
background-image: url(../img/backgrounds/11.jpg);
|
||||
background-position: center bottom;
|
||||
}
|
||||
.header-back-bg-subscribe {
|
||||
background-image: url(../img/backgrounds/12.jpg);
|
||||
}
|
||||
|
||||
.header-back-buttons{
|
||||
.button{
|
||||
margin-right: 20px;
|
||||
min-width: 180px;
|
||||
|
||||
&:last-child{
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.next-section{
|
||||
position: absolute;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
bottom: 20px;
|
||||
left: 50%;
|
||||
margin-left: -20px;
|
||||
cursor: pointer;
|
||||
font-size: 26px;
|
||||
line-height: 38px;
|
||||
vertical-align: middle;
|
||||
text-align: center;
|
||||
|
||||
.animation(next-section 3s Ease-in-out infinite);
|
||||
}
|
||||
|
||||
.next-section-light{
|
||||
color: white;
|
||||
}
|
||||
|
||||
.header-back-video{
|
||||
|
||||
.header-back-container{
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
background-color: fade(darken(@color_black, 10%),60%);
|
||||
}
|
||||
|
||||
.video-js{
|
||||
background-color: #000;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.header-back-web{
|
||||
padding: 170px 0 0;
|
||||
margin-bottom: 200px;
|
||||
}
|
||||
|
||||
.header-back-app{
|
||||
padding: 190px 0 100px;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
.header-back-soft{
|
||||
padding: 200px 0 100px;
|
||||
margin-bottom: 200px;
|
||||
}
|
||||
|
||||
.keyframes(next-section; {
|
||||
0%{
|
||||
.transform(translateY(-10px));
|
||||
}
|
||||
|
||||
50%{
|
||||
.transform(translateY(10px));
|
||||
}
|
||||
|
||||
100%{
|
||||
.transform(translateY(-10px));
|
||||
}
|
||||
});
|
||||
|
||||
.media-mixin(@break) when (@break = @break-large-x){
|
||||
.header-back-soft {
|
||||
margin-bottom: 150px;
|
||||
}
|
||||
}
|
||||
.media-mixin(@break) when (@break = @break-medium){
|
||||
.header-back-soft {
|
||||
margin-bottom: 130px;
|
||||
}
|
||||
}
|
||||
|
||||
.media-mixin(@break) when (@break = @break-small){
|
||||
.header-back-soft {
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
}
|
||||
|
||||
.media-mixin(@break) when (@break = @break-small-x) {
|
||||
.header-back-large{
|
||||
padding: 150px 0;
|
||||
}
|
||||
|
||||
.header-back-buttons{
|
||||
.button{
|
||||
width: 80%;
|
||||
margin: 0 auto 20px auto;
|
||||
}
|
||||
}
|
||||
.header-back-soft {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user