Skip to content

Instantly share code, notes, and snippets.

@cjlaborde
cjlaborde / head.js
Created February 15, 2021 18:32 — forked from garethredfern/head.js
The full head tag for a Nuxt website, including social media and SEO tags. Put this in your nuxt.config.js file.
head: {
htmlAttrs: {
lang: "en-GB",
},
title: "Articles focused on learning Laravel and VueJS",
meta: [
{ charset: "utf-8" },
{ name: "HandheldFriendly", content: "True" },
{ name: "viewport", content: "width=device-width, initial-scale=1" },
{
@cjlaborde
cjlaborde / getSiteMeta.js
Created February 15, 2021 19:06 — forked from garethredfern/getSiteMeta.js
The full getSiteMeta function for a Nuxt website, including social media and SEO tags.
const type = "website";
const url = "https://bobross.com";
const title = "My Amazing Blog on The Joy of Painting";
const description = "Articles focused on the beautiful art of landscape painting.";
const mainImage = "/a-lovely-image.png";
export default (meta) => {
return [
{
hid: "description",
@cjlaborde
cjlaborde / Big List of Real Estate APIs.md
Created June 16, 2021 10:02 — forked from patpohler/Big List of Real Estate APIs.md
Evolving list of Real Estate APIs by Category

Big List of Real Estate APIs

Listings / Property Data

####Rets Rabbit http://www.retsrabbit.com

Rets Rabbit removes the nightmare of importing thousands of real estate listings and photos from RETS or ListHub and gives you an easy to use import and Web API server so you can focus on building your listing search powered website or app.

<template>
    <div v-if="state" class="ais-GeoSearch">
        <GmapMap
            :center="center"
            :zoom.sync="zoom"
            class="ais-GeoSearch-map"
        >
        <gmap-custom-marker
                class="cursor-pointer px-2 py-2 bg-green-500 shadow-lg rounded-full transition duration-500 ease-in-out transform hover:-translate-y-1 hover:scale-110 border border-white"