GIFT OF GOD is more than a streetwear brand. It's a declaration of identity. Every piece we create is rooted in the truth of Ephesians 2:8–9 — that salvation is not earned, performed, or deserved. It is a gift. Freely given. Received by faith.
We exist to clothe believers with the reminder of who they are: chosen, redeemed, and known. Not because of anything they've done — but because of everything He's done.
Wear the gift. Walk in grace.
Wearing my GOG hoodie is a daily reminder that I'm not defined by my past — I'm defined by His grace. This brand gets it.
Every piece is a conversation starter. When people ask about the cross tee, I get to share the gospel. That's what GIFT OF GOD does — it opens doors.
The quality is premium, the message is eternal. This isn't just streetwear. It's a statement of faith that doesn't compromise on style.
GIFT OF GOD began with a simple, world-altering truth: that the most valuable thing you will ever receive in your life — salvation — is not something you can purchase, earn, or deserve. It is a gift.
The brand was born from personal encounter with this truth. Sitting with Ephesians 2:8–9, reading the words over and over — "it is the gift of God" — something broke and something was built. If salvation is a gift, then our identity is settled. We no longer perform for acceptance. We live from acceptance. We no longer hustle for belonging. We already belong.
That revelation needed to be wearable. It needed to walk into rooms, sit on street corners, start conversations. It needed to be printed on fabric and worn by people who know who they are because they know Whose they are.
GIFT OF GOD is Christian streetwear — but above all, it is a declaration. Every hoodie, every tee, every accessory is a billboard for a theology that flips the script on human striving: you are loved not because of what you do, but because of what He did.
We exist at the intersection of faith and culture, not to sanitize culture — but to carry the gospel into it. Bold. Unashamed. Rooted in grace.
Salvation is not earned. It is freely given by a God who loved us when we had nothing to offer. This is the foundation of everything we build.
We receive the gift through trust — not effort. Faith is the hand that opens to receive what God freely gives. That posture shapes everything.
When you know you are saved by grace, your identity is unshakeable. You are not what you do. You are who He says you are. Chosen. Known. Loved.
To enable automated email notifications for enquiries and orders, integrate one of these backend solutions:
OPTION 1 — EMAILJS (Frontend, No Backend Required)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
1. Sign up at emailjs.com
2. Create a service (Gmail, Outlook, etc.)
3. Create two templates:
- "enquiry_notification" → sends to store owner
- "order_confirmation" → sends to customer
4. Add to your HTML:
<script src="https://cdn.jsdelivr.net/npm/@emailjs/browser@4/dist/email.min.js"></script>
5. Initialize: emailjs.init("YOUR_PUBLIC_KEY")
6. On form submit: emailjs.send("service_id", "template_id", { name, email, message })
OPTION 2 — NODE.JS + NODEMAILER (Full Backend)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
npm install nodemailer express
// server.js
const nodemailer = require('nodemailer');
const transporter = nodemailer.createTransport({
service: 'gmail',
auth: { user: '[email protected]', pass: 'your_app_password' }
});
// On enquiry:
transporter.sendMail({
from: 'GIFT OF GOD <[email protected]>',
to: '[email protected]',
subject: 'New Enquiry from ' + customerName,
html: emailTemplate
});
// On order:
transporter.sendMail({
from: 'GIFT OF GOD <[email protected]>',
to: customerEmail,
subject: 'Order Confirmed — GIFT OF GOD ✝',
html: orderConfirmTemplate
});
OPTION 3 — SHOPIFY (Recommended for Full E-Commerce)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
- Use this design as a custom Shopify theme
- Shopify handles all order confirmation emails natively
- Customize via: Admin → Settings → Notifications
- Use Klaviyo or Mailchimp for marketing automation