Skip to content

Commit ed7bcda

Browse files
committed
update meta tags
1 parent 1731780 commit ed7bcda

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

public/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
<meta name="author" content="Sai Nikhil Bheemanathini" />
1111
<meta
1212
name="description"
13-
content="A robust weather application to provide weather forecast for any city."
13+
content="A robust weather application to provide current and 24 hour 7 day weather forecast for any city in the world. Weather forecast data is powered by Dark Sky and city search data is powered by Teleport."
1414
/>
1515
<meta
1616
name="keywords"
17-
content="Weather,Forecast,Dark Sky,Teleport,HTML,CSS,XML,JavaScript,React"
17+
content="Weather, Forecast, 24 hour forecast, 7 day forecast, Dark Sky,Teleport, HTML, CSS, XML, JavaScript, React, Weather Icons, Animated Icons, Weather Backgrounds"
1818
/>
1919
<meta
2020
name="google-site-verification"
@@ -56,7 +56,7 @@
5656
<meta property="og:title" content="Weather React" />
5757
<meta
5858
property="og:description"
59-
content="A robust weather application to provide 7 day hourly weather forecast for any city in the world."
59+
content="A robust weather application to provide current and 24 hour 7 day weather forecast for any city in the world. Weather forecast data is powered by Dark Sky and city search data is powered by Teleport."
6060
/>
6161
<meta property="og:image" content="%PUBLIC_URL%/weather-react-app.png" />
6262

@@ -69,7 +69,7 @@
6969
<meta property="twitter:title" content="Weather React" />
7070
<meta
7171
property="twitter:description"
72-
content="A robust weather application to provide 7 day hourly weather forecast for any city in the world."
72+
content="A robust weather application to provide current and 24 hour 7 day weather forecast for any city in the world. Weather forecast data is powered by Dark Sky and city search data is powered by Teleport."
7373
/>
7474
<meta
7575
property="twitter:image"

public/weather-react-app.png

-1.65 KB
Loading

src/components/favorite/FavoriteComponent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const getImage = urbanArea => {
99
return image
1010
}
1111
const imageOverlay = {
12-
background: 'rgba(0,0,0,0.55)',
12+
background: 'rgba(0,0,0,0.7)',
1313
borderTopLeftRadius: '1rem',
1414
borderTopRightRadius: '1rem'
1515
}

src/components/weather/InfoComponent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const InfoComponent = ({address, latlong, urbanArea, weatherCurrent}) => {
1919
const {image, photographer, site, source} = getImageDetails(urbanArea)
2020

2121
const imageOverlay = {
22-
background: 'rgba(0,0,0,0.55)',
22+
background: 'rgba(0,0,0,0.7)',
2323
borderTopLeftRadius: '1rem',
2424
borderTopRightRadius: '1rem'
2525
}

src/containers/forecast/ForecastContainer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ const ForecastContainer = ({cityName, weatherCurrent, weatherForecast}) => {
6464
</div>
6565

6666
{/* tablet and above devices */}
67-
<div className='hidden sm:flex sm:pb-3'>
67+
<div className='hidden sm:flex sm:pb-3 sm:mb-4'>
6868
{weatherForecast.timeFrames[selectedDay] ? (
6969
<Carousel {...CarouselSettings('time', 'tablet')}>
7070
{weatherForecast.timeFrames[selectedDay].map(

0 commit comments

Comments
 (0)