Skip to content

Commit

Permalink
add twitter og attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
ProjektGopher committed Jul 27, 2021
1 parent 2382bea commit c8bae05
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions resources/views/welcome.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@
{{-- <meta name="theme-color" media="(prefers-color-scheme: light)" content="white"> --}}
{{-- <meta name="theme-color" media="(prefers-color-scheme: dark)" content="black"> --}}
<link rel="shortcut icon" href="{{ asset('img/icon.png')}}" type="image/png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@ProjektGopher" />
<meta name="twitter:creator" content="@ProjektGopher" />
<meta property="og:url" content="{{ route('home') }}" />
<meta property="og:title" content="Len Woodward" />
<meta property="og:description" content="TALL stack web developer - Available for Contract" />
<meta property="og:image" content="{{ asset('img/OpenGraph-1200x630.jpg')}}" />
<meta property="og:image:secure_url" content="{{ asset('img/OpenGraph-1200x630.jpg')}}" />
<meta property="og:image:type" content="image/jpeg" />
Expand Down
2 changes: 1 addition & 1 deletion routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@

Route::get('/', function () {
return view('welcome');
});
})->name('home');

0 comments on commit c8bae05

Please sign in to comment.