Features

Prezet is SEO Ready Out of the Box

Prezet comes with built-in Search Engine Optimization (SEO) features, automatically generating meta tags for your pages based on the front matter of your markdown files. This ensures that your content is well-optimized for search engines and social media platforms right from the start.

#SEO meta tags

Prezet uses the front matter of your markdown files as the source for key SEO elements. The following front matter fields are used to generate SEO meta tags:

  1. title: Used for the page title and og:title tags
  2. excerpt: Used for the meta description and og:description tags
  3. image: Used for the og:image tag

For more information on how Prezet uses front matter, please refer to the Front Matter documentation.

#How it works

Under the hood, Prezet uses the archtechx/laravel-seo package to generate and manage SEO tags. When rendering your markdown articles, the front matter data is passed to the SEO package at the top of the show.blade.php file. This template is published to your project, giving you the flexibility to customize the SEO tags as needed:

1// resources/views/vendor/prezet/show.blade.php
2 
3@seo([
4 'title' => $frontmatter->title,
5 'description' => $frontmatter->excerpt,
6 'url' => route('prezet.show', ['slug' => $frontmatter->slug]),
7 'image' => $frontmatter->image,
8])

For advanced customization, you can create your own FrontmatterData class to include additional article-specific information. See the Customizing Front Matter guide for more infomration. Data added to your custom class can then be easily passed to the SEO package via the blade template.

#Open Graph Images

An Open Graph (OG) image is a visual representation of a webpage that appears when the page is shared on social media platforms or messaging apps. It helps enhance the visibility and engagement of shared links.

Prezet comes with a command to automatically generate an ogimage for your posts. For more information on how to create and customize Open Graph images for your Prezet site, please refer to the Ogimage Generation documentation.

#SEO Metadata Preview

To help you visualize the SEO metadata for your pages, Prezet includes a blade component that uses JavaScript to preview the title, description, and og:image tags of the current page, allowing you to easily verify that the correct information is being displayed.

You can use this component in your templates as follows:

1```html +parse
2<x-prezet::meta></x-prezet::meta>
3```

Here's what it looks like rendered on this page: