feat: Add custom background color #3221 (#3336)

### What problem does this PR solve?

feat: Add custom background color #3221

### Type of change

- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2024-11-11 19:29:56 +08:00
committed by GitHub
parent 8536335e63
commit 528646a958
12 changed files with 409 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
import { CardWithForm } from './card';
import { HomeHeader } from './header';
const Home = () => {
return (
<div>
<HomeHeader></HomeHeader>
<section>
<CardWithForm></CardWithForm>
</section>
</div>
);
};
export default Home;