Fix invalid import bug

This commit is contained in:
Vikram Rangnekar 2019-09-30 01:48:29 -04:00
parent 4ddce9f804
commit dbcc51c462
3 changed files with 5 additions and 6 deletions

View File

@ -1,9 +1,7 @@
<template>
<div>
<main aria-labelledby="main-title" >
<Navbar
@toggle-sidebar="toggleSidebar"
/>
<Navbar />
<div class="container mx-auto">
<div class="flex flex-col md:flex-row justify-between px-10 md:px-20">
@ -54,8 +52,8 @@
</div>
<div class="bg-gray-100 my-10">
<div class="container mx-auto text-center px-10 md:px-0 py-32">
<h1 class="uppercase font-semibold text-xl text-blue-800 mb-10">
<div class="container mx-auto px-10 md:px-0 py-32">
<h1 class="uppercase font-semibold text-xl text-blue-800 mb-4">
What is {{ data.heroText }}?
</h1>
<div class="text-2xl md:text-3xl">

1
go.mod
View File

@ -18,6 +18,7 @@ require (
github.com/gorilla/websocket v1.4.0
github.com/jackc/fake v0.0.0-20150926172116-812a484cc733 // indirect
github.com/jackc/pgconn v1.0.1
github.com/jackc/pgtype v1.0.1
github.com/jackc/pgx v3.6.0+incompatible
github.com/jackc/pgx/v4 v4.0.1
github.com/jackc/tern v1.8.2

View File

@ -6,7 +6,7 @@ import (
"strings"
"github.com/gobuffalo/flect"
"github.com/jackc/pgx/pgtype"
"github.com/jackc/pgtype"
"github.com/jackc/pgx/v4/pgxpool"
)