Files
ui-essentials/projects/ui-landing-pages/src/lib/components/templates/agency-template.component.scss
Jules 2a28a8abbd Complete library submodule standardization and consumer integration
🎯 Major Achievements:
- Standardized 193+ SCSS imports across all libraries
- Created 12 independent Git repositories with clean submodule structure
- Eliminated relative path dependencies for true library portability
- Added comprehensive consumer integration documentation

📦 Libraries Successfully Published:
• ui-design-system (foundation)
• ui-essentials (components)
• shared-utils (utilities)
• auth-client (authentication)
• ui-landing-pages (marketing components)
• ui-code-display (syntax highlighting)
• ui-accessibility (WCAG compliance)
• hcl-studio (color management)
• ui-animations (CSS animations)
• ui-backgrounds (background effects)
• ui-font-manager (typography)
• ui-data-utils (data manipulation)

🔧 Technical Improvements:
- All SCSS imports now use standardized 'ui-design-system/' paths
- Libraries work independently as Git submodules
- Consumer projects can selectively include only needed libraries
- Professional Git history with initial commits for each library
- Updated integration guides with step-by-step workflows

📋 Documentation Added:
- CONSUMER_INTEGRATION_GUIDE.md - Complete setup instructions
- Updated SUBMODULE_INTEGRATION_GUIDE.md - Enhanced with dependency info
- Library-specific README files for all repositories

🚀 Ready for Production:
- All libraries pushed to https://git.sky-ai.com/jules/*
- Clean separation of concerns across library boundaries
- Independent versioning and release cycles possible
- Optimal structure for LLM analysis and maintenance

This completes the monorepo-to-submodule transformation, making the SSuite library ecosystem ready for professional distribution and consumption.

🤖 Generated with Claude Code (https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-12 14:42:01 +10:00

117 lines
2.4 KiB
SCSS

@use 'ui-design-system/src/styles/semantic/index' as *;
.ui-lp-agency-template {
min-height: 100vh;
display: flex;
flex-direction: column;
&__main {
flex: 1;
// Agency-focused styling with professional appearance
> *:nth-child(odd) {
background: $semantic-color-surface-primary;
}
> *:nth-child(even) {
background: $semantic-color-surface-secondary;
}
// Special treatment for hero section
> ui-lp-hero-split {
background: unset;
}
// Team section gets special emphasis
> ui-lp-team-grid {
background: $semantic-color-surface-elevated;
border: 1px solid $semantic-color-border-subtle;
}
// Timeline section styling
> ui-lp-timeline {
position: relative;
&::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(
to right,
transparent,
$semantic-color-border-subtle,
transparent
);
}
}
}
// Enhanced section spacing for agency layout
section {
padding: $semantic-spacing-layout-section-xl 0;
}
// Professional section dividers
section + section {
border-top: 1px solid $semantic-color-border-subtle;
position: relative;
&::before {
content: '';
position: absolute;
top: -1px;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 1px;
background: $semantic-color-primary;
}
}
// Responsive adjustments for agency layout
@media (max-width: $semantic-breakpoint-lg - 1) {
section {
padding: $semantic-spacing-layout-section-lg 0;
}
}
@media (max-width: $semantic-breakpoint-md - 1) {
&__main {
> ui-lp-team-grid {
border: none;
}
}
section {
padding: $semantic-spacing-layout-section-md 0;
}
section + section::before {
width: 50px;
}
}
@media (max-width: $semantic-breakpoint-sm - 1) {
&__main {
> * {
background: $semantic-color-surface-primary !important;
}
}
section {
padding: $semantic-spacing-layout-section-sm 0;
}
section + section {
border-top: none;
margin-top: $semantic-spacing-layout-section-sm;
&::before {
display: none;
}
}
}
}