-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Homepage Refresh #173
base: main
Are you sure you want to change the base?
Homepage Refresh #173
Conversation
✅ Deploy Preview for directus-website ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some minor changes and questions here. Looks great otherwise 😄 👍
block_masonry_grid: resolveComponent('BlockMasonryGrid'), | ||
block_masonry_grid_card: resolveComponent('BlockMasonryGridCard'), | ||
block_wall_of_love: resolveComponent('BlockWallOfLove'), | ||
testimonials: resolveComponent('BlockTestimonials'), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a specific reason this isn't prefixed with block_
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@bryantgillespie I left it out because whoever made the testimonials in Directus just called it 'Testimonials' no block in the name. Is it possible at all to rename it on that end so it's consistent with the others on the database level?
|
||
const props = defineProps<WithClassAsProps>(); | ||
|
||
const { orientation } = useCarousel(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unused deconstructed var here, which I think means you can remove the import entirely
</template> | ||
|
||
<style scoped lang="scss"> | ||
.block-logocloud-ticker { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| 'block_carousel_cards' | ||
| 'block_masonry_grid' | ||
| 'block_masonry_grid_card' | ||
| 'testimonials' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
again missing block_
block_masonry_grid: BlockMasonryGrid[]; | ||
block_masonry_grid_card: BlockMasonryGridCard[]; | ||
block_wall_of_love: BlockWallOfLove[]; | ||
testimonials: BlockTestimonials[]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and again block_
Adding a new glow-up to the Directus homepage.
New Components
Updates to Old Components