Skip to content

Commit

Permalink
Merge pull request #1664 from ClickHouse/optimize-logo
Browse files Browse the repository at this point in the history
Increase logo size on landing page
  • Loading branch information
justindeguzman authored Nov 10, 2023
2 parents b6b82fc + ebc6252 commit 5cfa438
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const Hero = ({ children, color}) => {
<div className='home-page-hero'>
<div className='home-page-hero-left'>
<div style={{display: 'flex', flexDirection: 'row', alignItems: 'center', marginBottom: '12px'}}>
<ClickHouseLogo width='180px' />
<ClickHouseLogo width='220px' />
</div>
<div style={{fontSize: '16px', lineHeight: '1.4'}}>Learn how to use ClickHouse through guides, reference documentation, and videos</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/icons/ClickHouseLogo.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react'

export default ({width}) => {
return (
<svg width={width} height="34" viewBox="0 0 220 34" fill="none" xmlns="http://www.w3.org/2000/svg">
<svg width={width} viewBox="0 0 220 34" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.8587 0H0.918881C0.411397 0 0 0.411397 0 0.918881V33.0793C0 33.5868 0.411397 33.9982 0.918881 33.9982H2.8587C3.36618 33.9982 3.77758 33.5868 3.77758 33.0793V0.918881C3.77758 0.411397 3.36618 0 2.8587 0Z" fill="white"/>
<path d="M10.4142 0H8.47442C7.96694 0 7.55554 0.411397 7.55554 0.918881V33.0793C7.55554 33.5868 7.96694 33.9982 8.47442 33.9982H10.4142C10.9217 33.9982 11.3331 33.5868 11.3331 33.0793V0.918881C11.3331 0.411397 10.9217 0 10.4142 0Z" fill="white"/>
<path d="M17.9699 0H16.0301C15.5226 0 15.1112 0.411397 15.1112 0.918881V33.0793C15.1112 33.5868 15.5226 33.9982 16.0301 33.9982H17.9699C18.4774 33.9982 18.8888 33.5868 18.8888 33.0793V0.918881C18.8888 0.411397 18.4774 0 17.9699 0Z" fill="white"/>
Expand Down

0 comments on commit 5cfa438

Please sign in to comment.