First Date Home #9
Merged
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.
This pull request introduces several new components, utilities, and dependencies to enhance the functionality and styling of the project. Key changes include the addition of new Astro components, updates to dependency management files, and improvements to global styling.
Component Additions:
src/components/common/BlurText.astro: Added a reusable component for rendering text with a blur effect. Includes customizable props for styling.src/components/firstdate/Footer.astro: Implemented a footer component with dynamic gradient styling based on thevarientprop. Includes contact information and logos.src/components/firstdate/Navbar.astro: Added a simple navigation bar component with a logo and hamburger menu.src/components/firstdate/ui/DummyButton.astro: Created a button component with customizable styles and hover effects.src/layouts/firstdate/WithNavbar.astro: Added a layout component that integrates theNavbarandFootercomponents, with a background image and slot for main content.Dependency Updates:
package.jsonandpnpm-lock.yaml: Added new dependencies, including@fontsource/ibm-plex-sans-thai,@fontsource/zen-dots,clsx, andtailwind-mergefor enhanced styling and utility functions. [1] [2] [3] [4] [5] [6]Utility Enhancements:
src/lib/utils.ts: Added a utility functioncnthat combinesclsxandtailwind-mergefor simplified class name management.Styling Improvements:
src/styles/global.css: Imported new fonts (IBM Plex Sans ThaiandZen Dots) and set the default font family for the project.Page Updates:
src/pages/firstdate/home/index.astro: Created a new page using theWithNavbarlayout,BlurText, andDummyButtoncomponents. Includes sections for activities and additional resources.