Skip to content

Commit

Permalink
🐛 moved most meta tags to php app file
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielFerguson committed Jun 5, 2022
1 parent 3de626b commit bc999c5
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 51 deletions.
51 changes: 0 additions & 51 deletions resources/js/pages/home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,57 +57,6 @@ const Home = () => {
name="description"
content="Mates Motivate is the next thing in following your goals, we have found in our own lives that the best motivator there is “your mates”. Encourage a stronger commitment, celebrate your wins, and keep you motivated toward completing your goals."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://matesmotivate.com/" />
<meta
property="og:title"
content="Mates Motivate | Achieve your goals, celebrate success
together."
/>
<meta
property="og:description"
content="Mates Motivate is the next thing in following your goals, we have found in our own lives that the best motivator there is “your mates”. Encourage a stronger commitment, celebrate your wins, and keep you motivated toward completing your goals."
/>
<meta
property="og:image"
content="https://matesmotivate.com/assets/meta.jpg"
/>
<meta property="twitter:card" content="summary_large_image" />
<meta
property="twitter:url"
content="https://matesmotivate.com/"
/>
<meta
property="twitter:title"
content="Mates Motivate | Achieve your goals, celebrate success
together."
/>
<meta
property="twitter:description"
content="Mates Motivate is the next thing in following your goals, we have found in our own lives that the best motivator there is “your mates”. Encourage a stronger commitment, celebrate your wins, and keep you motivated toward completing your goals."
/>
<meta
property="twitter:image"
content="https://matesmotivate.com/assets/meta.jpg"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon-16x16.png"
/>
<link rel="manifest" href="/site.webmanifest"></link>
</Head>

{/* Hero */}
Expand Down
19 changes: 19 additions & 0 deletions resources/views/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,25 @@
<link href="{{ mix('/css/app.css') }}" rel="stylesheet" />
<script src="{{ mix('/js/app.js') }}" defer></script>
@inertiaHead

<meta property="og:type" content="website" />
<meta property="og:url" content="https://matesmotivate.com/" />
<meta property="og:title" content="Mates Motivate | Achieve your goals, celebrate success
together." />
<meta property="og:description"
content="Mates Motivate is the next thing in following your goals, we have found in our own lives that the best motivator there is “your mates”. Encourage a stronger commitment, celebrate your wins, and keep you motivated toward completing your goals." />
<meta property="og:image" content="https://matesmotivate.com/assets/meta.jpg" />
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://matesmotivate.com/" />
<meta property="twitter:title" content="Mates Motivate | Achieve your goals, celebrate success
together." />
<meta property="twitter:description"
content="Mates Motivate is the next thing in following your goals, we have found in our own lives that the best motivator there is “your mates”. Encourage a stronger commitment, celebrate your wins, and keep you motivated toward completing your goals." />
<meta property="twitter:image" content="https://matesmotivate.com/assets/meta.jpg" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
</head>

<body>
Expand Down

0 comments on commit bc999c5

Please sign in to comment.