Skip to content

Commit

Permalink
fix: testimonial
Browse files Browse the repository at this point in the history
  • Loading branch information
debuggingfuture committed Nov 21, 2024
1 parent 4de746f commit 0b66d93
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion page-container/index-page/HeroContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const HeroContent = ({ className }: Partial<{ className: string }>) => {
const classes = useStyles();
return (
<Grid container direction="column" component="article" className={className}>
<Grid item xs={12}>
<Grid item xs={12} className="pb-10">
<Typography variant="h2" color="primary">
Architecting software, teams,
<Hidden smDown><br /></Hidden>
Expand Down
2 changes: 1 addition & 1 deletion page-container/index-page/IndexPageContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ const useStyle = makeStyles((theme) => ({
const IndexPageContainer = () => {
const classes = useStyle();
return (
<div className="container m-auto pt-5">
<div className="container m-auto">
<Box mx={{ xs: '5.8%', md: '10%' }}>
<Grid container direction="column">
<Header isIndexPage />
Expand Down
4 changes: 2 additions & 2 deletions page-container/index-page/Testimonial.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ const Testimonial = ({ className }: Partial<{ className: string }>) => {
return (
<Grid component="article" container justify="space-around">
<Grid item sm={12} className={classes.title}>
<Typography variant="h3" color="primary">
<h2 className="text-2xl font-italic underline">
Testimonial
</Typography>
</h2>
</Grid>
{content.map((testimonial) => (
<Grid component="section" className={classes.sectionRoot} key={testimonial.name} item container alignItems="center" direction="column">
Expand Down

0 comments on commit 0b66d93

Please sign in to comment.