Configure Wall Works Hardscape site from template#1
Open
Crypto-Goatz wants to merge 2 commits into
Open
Conversation
Duplicate rocket-client-template for Wall Works — retaining walls & masonry in Westmoreland County. Includes complete onboarding flow (7-step setup wizard), CRO9 analytics integration, and SXO behavioral tracking panel. - Update branding defaults to Wall Works (name, tagline, domain, colors) - Apply black/white/red gradient color scheme (#1a1a1a, #ffffff, #dc2626) - Replace Rocket platform branding with Wall Works throughout - Update .env.example, site.config.ts, and deployment docs - Verify all onboarding steps, CRO9 analytics, and SXO panel intact https://claude.ai/code/session_01Xoj8y4GAFiC1vMbm3mNGQr
Add a single source of truth for all client-specific values (name, phone, email, domain, tagline, colors, footer text, admin title, SEO fallbacks). All other files now import from CLIENT config instead of hardcoding strings. For future client clones: update only config/client.config.ts and .env.example to rebrand the entire site universally. https://claude.ai/code/session_01Xoj8y4GAFiC1vMbm3mNGQr
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Customize the Rocket Client Template for Wall Works Hardscape by introducing a centralized client configuration system and updating all references throughout the codebase to use Wall Works branding, contact information, and styling.
Key Changes
New
config/client.config.ts: Created a single source of truth for all client-specific configuration (business name, contact info, colors, taglines, storage keys, etc.). This file is marked as protected from template updates.Updated
config/site.config.ts: Modified to read default values fromCLIENTconfig instead of hardcoded placeholders, ensuring the entire site reflects client settings.Centralized branding: Updated all components and utilities to import and use
CLIENTconfig:components/site/Footer.tsx: UsesCLIENT.footerTextinstead of generic copycomponents/admin/Sidebar.tsx: UsesCLIENT.adminTitleandCLIENT.adminSubtitleapp/layout.tsx: UsesCLIENT.seoTitleandCLIENT.seoDescriptionas fallbacksapp/admin/setup/components/SetupWizard.tsx: UsesCLIENT.storagePrefixand color defaultslib/setup/site-importer.ts: UsesCLIENT.nameandCLIENT.urlin User-Agent headerEnvironment variables: Updated
.env.examplewith Wall Works-specific values (domain, business name, colors, contact info)Documentation updates:
README.md: Changed from generic template description to Wall Works-specific contentDEPLOY.md: Updated with Wall Works deployment instructionsUPDATING.md: Removed Rocket+ branding referencespackage.json: Updated package name towall-works-hardscapeUI refinement: Changed completion step icon from
RockettoPartyPopperfor better visual fitFooter branding: Removed "Powered by Rocket+" attribution link
Implementation Details
The
CLIENTconfig is exported as a const object withas constassertion, providing type safety viaClientConfigtype. This allows the setup wizard and other components to reference client-specific values while maintaining the ability to override them via environment variables or Google Sheets at runtime.All client-specific customizations are now isolated in
config/client.config.ts, making it easy to clone this template for future clients by simply updating that single file.https://claude.ai/code/session_01Xoj8y4GAFiC1vMbm3mNGQr