fix: simplify home barrel export and use semantic tokens
Docker Build / Build and Push Docker Image (push) Failing after 1m39s
Docker Build / Build and Push Docker Image (push) Failing after 1m39s
This commit is contained in:
@@ -16,8 +16,4 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
For commercial licensing, please contact admin@modelstoken.com
|
||||
*/
|
||||
export { CTA } from './sections/cta'
|
||||
export { Features } from './sections/features'
|
||||
export { Hero } from './sections/hero'
|
||||
export { HowItWorks } from './sections/how-it-works'
|
||||
export { Stats } from './sections/stats'
|
||||
|
||||
+3
-3
@@ -33,8 +33,8 @@ export function Home() {
|
||||
if (!isLoaded) {
|
||||
return (
|
||||
<PublicLayout showMainContainer={false}>
|
||||
<main className='flex min-h-screen items-center justify-center bg-[#0A0E14]'>
|
||||
<div className='text-[#5C6370]'>{t('Loading...')}</div>
|
||||
<main className='flex min-h-screen items-center justify-center bg-background'>
|
||||
<div className='text-muted-foreground'>{t('Loading...')}</div>
|
||||
</main>
|
||||
</PublicLayout>
|
||||
)
|
||||
@@ -43,7 +43,7 @@ export function Home() {
|
||||
if (content) {
|
||||
return (
|
||||
<PublicLayout showMainContainer={false}>
|
||||
<main className='overflow-x-hidden bg-[#0A0E14]'>
|
||||
<main className='overflow-x-hidden bg-background'>
|
||||
{isUrl ? (
|
||||
<iframe
|
||||
src={content}
|
||||
|
||||
Reference in New Issue
Block a user