Compare commits
23 Commits
version_3
...
version_14
| Author | SHA1 | Date | |
|---|---|---|---|
| 9ab8d34fc4 | |||
| f74ad77af9 | |||
| 53afbfa1d9 | |||
| f5e3d49c66 | |||
| 731a53e31f | |||
| 026b71b0b8 | |||
| a4f73a2ec0 | |||
| 4345f747b0 | |||
| 42497229d7 | |||
| 2c9bfb461c | |||
| 59f5b88a7a | |||
| 4c03643865 | |||
| d24ea2dc75 | |||
| 77bea668f6 | |||
| f0b54eb12c | |||
| 9ff2d7bb2f | |||
| 9243180852 | |||
| b9ddddc25f | |||
| 3fb83987e1 | |||
| 217a7d4fa0 | |||
| d25bc8d876 | |||
| 8568255e87 | |||
| e3b7da1f24 |
@@ -262,6 +262,10 @@ export default function LandingPage() {
|
||||
planButtonClassName="bg-blue-500 text-white hover:bg-blue-600"
|
||||
featuresClassName="mt-4"
|
||||
featureItemClassName="text-gray-600"
|
||||
planTitleClassName="text-2xl font-bold"
|
||||
planSubtitleClassName="text-gray-500"
|
||||
planPriceClassName="text-3xl font-bold"
|
||||
planFeatureClassName="text-gray-600"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -3,20 +3,20 @@
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
/* --background: #fffafa;;
|
||||
--card: #fff7f7;;
|
||||
--foreground: #1a0000;;
|
||||
--primary-cta: #e63946;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #f5c4c7;;
|
||||
--background-accent: #f09199;; */
|
||||
--card: #ff0000;;
|
||||
--foreground: "Inter", sans-serif;;
|
||||
--primary-cta: #800080;;
|
||||
--secondary-cta: "Inter", sans-serif;;
|
||||
--accent: #90ee90;;
|
||||
--background-accent: #20b2aa;; */
|
||||
|
||||
--background: #fffafa;;
|
||||
--card: #fff7f7;;
|
||||
--foreground: #1a0000;;
|
||||
--primary-cta: #e63946;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #f5c4c7;;
|
||||
--background-accent: #f09199;;
|
||||
--background: #ffffff;;
|
||||
--card: #ff0000;;
|
||||
--foreground: "Inter", sans-serif;;
|
||||
--primary-cta: #800080;;
|
||||
--secondary-cta: "Inter", sans-serif;;
|
||||
--accent: #90ee90;;
|
||||
--background-accent: #20b2aa;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
@@ -160,6 +160,11 @@ const FeatureCardTwentyFive = ({
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
<div className="mt-5">
|
||||
<button className={cls("bg-primary text-background px-4 py-2 rounded-theme transition-colors hover:bg-primary-dark", textBoxButtonClassName)}>
|
||||
Take a Look at Dishes
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
})}
|
||||
|
||||
@@ -120,7 +120,7 @@ const HeroLogoBillboardSplit = ({
|
||||
</div>
|
||||
|
||||
{frameStyle === "browser" ? (
|
||||
<div className={cls("w-full overflow-hidden rounded-theme-capped card", mediaWrapperClassName)}>
|
||||
<div className={cls("w-full overflow-hidden rounded-theme-capped card mt-4", mediaWrapperClassName)}>
|
||||
<div className={cls("relative z-1 bg-background border-b border-foreground/10 px-4 py-3 flex items-center gap-4", browserBarClassName)}>
|
||||
<div className="flex items-center gap-2">
|
||||
<div className="h-3 w-auto aspect-square rounded-theme bg-accent" />
|
||||
@@ -145,7 +145,7 @@ const HeroLogoBillboardSplit = ({
|
||||
</div>
|
||||
</div>
|
||||
) : (
|
||||
<div className={cls("w-full overflow-hidden rounded-theme-capped card p-4", mediaWrapperClassName)}>
|
||||
<div className={cls("w-full overflow-hidden rounded-theme-capped card p-4 mt-4", mediaWrapperClassName)}>
|
||||
<MediaContent
|
||||
imageSrc={imageSrc}
|
||||
videoSrc={videoSrc}
|
||||
|
||||
Reference in New Issue
Block a user