5350bryantave.com Open in urlscan Pro
3.33.207.30  Public Scan

URL: https://5350bryantave.com/
Submission: On September 23 via api from BE — Scanned from DE

Form analysis 2 forms found in the DOM

<form @submit.prevent="beforeSubmitForm" id="agent-contact-form" novalidate="" class="mt-4">
  <div class="grid grid-cols-1 md:grid-cols-12 gap-4">
    <div class="hidden col-span-3 md:flex items-center justify-end">
      <label for="name" class="block text-right label text-bg-contrast">NAME:</label>
    </div>
    <div class="md:col-span-9">
      <div class="mt-1">
        <label for="name" class="block md:hidden label text-bg-contrast">NAME</label>
        <input type="text" name="name" id="name" autocomplete="name" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700
                                        focus:outline-none focus:ring-0 focus:border-gray-700">
        <span x-show="!validForm.fields.name.valid" class="error-msg text-bg-contrast">Name cannot be empty</span>
      </div>
    </div>
    <div class="hidden col-span-3 md:flex items-center justify-end">
      <label for="email" class="block text-right label text-bg-contrast">EMAIL:</label>
    </div>
    <div class="md:col-span-9">
      <div class="mt-1">
        <label for="name" class="block md:hidden label text-bg-contrast">EMAIL</label>
        <input id="email" name="email" type="email" autocomplete="email" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700 focus:outline-none
                                       focus:ring-0 focus:border-brand-gray-700" data-error-msg="Email address must be a valid address">
        <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'required'" class="error-msg text-bg-contrast">Email cannot be empty</span>
        <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'email'" class="error-msg text-bg-contrast ">Provide a valid email address</span>
      </div>
    </div>
    <div class="hidden col-span-3 md:flex items-center justify-end">
      <label for="phone-number" class="block text-right label text-bg-contrast">PHONE:</label>
    </div>
    <div class="md:col-span-9">
      <label for="phone-number" class="block md:hidden label text-bg-contrast">PHONE</label>
      <div class="mt-1">
        <input type="text" name="phone" id="phone-number" autocomplete="phone-number" placeholder="(415)555-1234" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700 focus:outline-none
                                       focus:ring-0 focus:border-brand-gray-700" data-error-msg="Phone number cannot be empty">
        <span x-show="!validForm.fields.phone.valid" class="error-msg text-bg-contrast">Phone number cannot be empty</span>
      </div>
    </div>
    <div class="hidden col-span-3 md:flex items-start justify-end">
      <label for="message" class="block text-right label text-bg-contrast">MESSAGE:</label>
    </div>
    <div class="md:col-span-9">
      <label for="message" class="block md:hidden label text-bg-contrast">MESSAGE</label>
      <div class="mt-1">
        <textarea id="message" name="message" rows="4" placeholder="Write your message here..." class="block w-full rounded border-brand-gray-300 py-2 px-3 text-brand-gray-700 resize-none
                                          focus:outline-none focus:ring-0 focus:border-brand-gray-700" aria-describedby="message-max"></textarea>
        <span x-show="!validForm.fields.message.valid" class="error-msg text-bg-contrast">Message cannot be empty</span>
      </div>
    </div>
    <div class="sm:flex sm:justify-end text-sm my-1 md:col-span-12 text-bg-contrast">
      <p>The site is protected by reCAPTCHA and the <a href="https://policies.google.com/privacy" class="hover:underline" target="_blank">Google Privacy Policy</a> and
        <a href="https://policies.google.com/terms" class="hover:underline" target="_blank">Terms of Service</a> apply. </p>
    </div>
    <div class="hidden md:block col-span-3"></div>
    <div class="md:col-span-9">
      <div class="mt-1 text-right">
        <button type="submit" class="disabled:cursor-not-allowed disabled:opacity-50
                                            button-style uppercase md:tracking-widest text-center max-w-sm mx-auto text-sm
                                            sm:text-base" id="contact-submit" x-bind:disabled="sendingForm"> Send <i class="fa-duotone fa-spinner-third fa-spin ml-2" x-show="sendingForm"></i>
        </button>
      </div>
    </div>
  </div>
</form>

<form @submit.prevent="beforeSubmitForm" id="agent-contact-form" novalidate="" class="mt-4">
  <div class="grid grid-cols-1 md:grid-cols-12 gap-4">
    <div class="hidden col-span-3 md:flex items-center justify-end">
      <label for="name" class="block text-right label text-bg-contrast">NAME:</label>
    </div>
    <div class="md:col-span-9">
      <div class="mt-1">
        <label for="name" class="block md:hidden label text-bg-contrast">NAME</label>
        <input type="text" name="name" id="name" autocomplete="name" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700
                                        focus:outline-none focus:ring-0 focus:border-gray-700">
        <span x-show="!validForm.fields.name.valid" class="error-msg text-bg-contrast" style="display: none;">Name cannot be empty</span>
      </div>
    </div>
    <div class="hidden col-span-3 md:flex items-center justify-end">
      <label for="email" class="block text-right label text-bg-contrast">EMAIL:</label>
    </div>
    <div class="md:col-span-9">
      <div class="mt-1">
        <label for="name" class="block md:hidden label text-bg-contrast">EMAIL</label>
        <input id="email" name="email" type="email" autocomplete="email" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700 focus:outline-none
                                       focus:ring-0 focus:border-brand-gray-700" data-error-msg="Email address must be a valid address">
        <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'required'" class="error-msg text-bg-contrast" style="display: none;">Email cannot be empty</span>
        <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'email'" class="error-msg text-bg-contrast " style="display: none;">Provide a valid email address</span>
      </div>
    </div>
    <div class="hidden col-span-3 md:flex items-center justify-end">
      <label for="phone-number" class="block text-right label text-bg-contrast">PHONE:</label>
    </div>
    <div class="md:col-span-9">
      <label for="phone-number" class="block md:hidden label text-bg-contrast">PHONE</label>
      <div class="mt-1">
        <input type="text" name="phone" id="phone-number" autocomplete="phone-number" placeholder="(415)555-1234" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700 focus:outline-none
                                       focus:ring-0 focus:border-brand-gray-700" data-error-msg="Phone number cannot be empty">
        <span x-show="!validForm.fields.phone.valid" class="error-msg text-bg-contrast" style="display: none;">Phone number cannot be empty</span>
      </div>
    </div>
    <div class="hidden col-span-3 md:flex items-start justify-end">
      <label for="message" class="block text-right label text-bg-contrast">MESSAGE:</label>
    </div>
    <div class="md:col-span-9">
      <label for="message" class="block md:hidden label text-bg-contrast">MESSAGE</label>
      <div class="mt-1">
        <textarea id="message" name="message" rows="4" placeholder="Write your message here..." class="block w-full rounded border-brand-gray-300 py-2 px-3 text-brand-gray-700 resize-none
                                          focus:outline-none focus:ring-0 focus:border-brand-gray-700" aria-describedby="message-max"></textarea>
        <span x-show="!validForm.fields.message.valid" class="error-msg text-bg-contrast" style="display: none;">Message cannot be empty</span>
      </div>
    </div>
    <div class="sm:flex sm:justify-end text-sm my-1 md:col-span-12 text-bg-contrast">
      <p>The site is protected by reCAPTCHA and the <a href="https://policies.google.com/privacy" class="hover:underline" target="_blank">Google Privacy Policy</a> and
        <a href="https://policies.google.com/terms" class="hover:underline" target="_blank">Terms of Service</a> apply. </p>
    </div>
    <div class="hidden md:block col-span-3"></div>
    <div class="md:col-span-9">
      <div class="mt-1 text-right">
        <button type="submit" class="disabled:cursor-not-allowed disabled:opacity-50
                                            button-style uppercase md:tracking-widest text-center max-w-sm mx-auto text-sm
                                            sm:text-base" id="contact-submit" x-bind:disabled="sendingForm"> Send <i class="fa-duotone fa-spinner-third fa-spin ml-2" x-show="sendingForm" aria-hidden="true" style="display: none;"></i>
        </button>
      </div>
    </div>
  </div>
</form>

Text Content

DANI  O'CONNELL  & VINCENT MINELLI PRESENT


EXCEPTIONAL OAKLAND HOME


5350 BRYANT AVENUE, OAKLAND

|


$1,398,000


5350 BRYANT AVENUE

 * Home
 * Gallery
 * Features
 * Virtual Tour
 * Neighborhood
 * Maps
 * Agent Info
 * Schedule
 * Contact

Toggle navigation
 * Home
 * Gallery
 * Features
 * Virtual Tour
 * Neighborhood
 * Maps
 * Agent Info
 * Schedule
 * Contact


ALL PROPERTY PHOTOS


View more


PROPERTY DETAILS

Bedrooms 3
Bathrooms 2
Square Feet 1,626 sq ft
Neighborhood Rockridge, Oakland


OWN A OAKLAND GEM

This contemporary artisan home in Oakland's coveted Rockridge neighborhood
offers modern elegance with timeless craftsmanship. Expanded and renovated by
the acclaimed Jarvis Architects, it features 3 bedrooms, 2 bathrooms, and a
versatile bonus room adjacent to the serene primary suite, ideal for an office
or nursery. A charming coffee nook adds to its appeal, while the open-concept
living and dining areas, with expansive windows, flood the space with natural
light. The gourmet kitchen, equipped with SS appliances and bespoke finishes,
serves as the heart of the home, perfect for both intimate gatherings and grand
entertaining. The landscaped garden provides an ideal setting for relaxation and
outdoor dining. Located in vibrant Rockridge, known for its fine dining and
upscale shopping, this home is a true masterpiece of contemporary design,
offering the perfect blend of luxury and lifestyle.


3D VIRTUAL TOUR




NEIGHBORHOOD

Cross Alcatraz Avenue, which divides Oakland and Berkeley, and you’ll find
yourself in Rockridge, one of Oakland's most desirable, charming, and convenient
neighborhoods. Housing in Rockridge is a combination of charming bungalows,
cottages, classic Arts and Crafts dwellings, and large brown-shingle houses. Its
leafy streets are mainly residential. Rockridge offers an easy commute into 
San Francisco via the Bay Area Rapid Transit (BART) station, as well as access
to the University of California, Berkeley Campus. The 100-year-old, four-acre
campus of the California College of Art and Crafts is nearby. Food-and-drink
purveyors in Rockridge provide the best from around the world and local farms.
Rockridge Market Hall, which takes its cue from the French Marché, offers
numerous individual food and flower shops open to the sidewalk. Dozens of
restaurants, cafes, and boutiques line bustling College Avenue, Rockridge's main
drag.
Keep reading
Cross Alcatraz Avenue, which divides Oakland and Berkeley, and you’ll find
yourself in Rockridge, one of Oakland's most desirable, charming, and convenient
neighborhoods. Housing in Rockridge is a combination of charming bungalows,
cottages, classic Arts and Crafts dwellings, and large brown-shingle houses. Its
leafy streets are mainly residential. Rockridge offers an easy commute into 
San Francisco via the Bay Area Rapid Transit (BART) station, as well as access
to the University of California, Berkeley Campus. The 100-year-old, four-acre
campus of the California College of Art and Crafts is nearby. Food-and-drink
purveyors in Rockridge provide the best from around the world and local farms.
Rockridge Market Hall, which takes its cue from the French Marché, offers
numerous individual food and flower shops open to the sidewalk. Dozens of
restaurants, cafes, and boutiques line bustling College Avenue, Rockridge's main
drag.

View more


Vincent Minelli

The Agency

DRE: #01926199 Office: 510-326-8034



vincentminelli@gmail.com



minellihomes.com

Dani O'connell

The Agency

Broker Associate

DRE: #01882902 Cell: 9257862176 Office: 9257862176



dani.oconnell@theagencyre.com





Upcoming Events

Saturday

Sep 14

Open House Tours

2:00 PM - 4:30 PM

Sunday

Sep 15

Open House Tours

2:30 PM - 4:30 PM



Request an appointment


GET IN TOUCH

NAME:
NAME Name cannot be empty
EMAIL:
EMAIL Email cannot be empty Provide a valid email address
PHONE:
PHONE
Phone number cannot be empty
MESSAGE:
MESSAGE
Message cannot be empty

The site is protected by reCAPTCHA and the Google Privacy Policy and Terms of
Service apply.


Send


GET IN TOUCH

NAME:
NAME Name cannot be empty
EMAIL:
EMAIL Email cannot be empty Provide a valid email address
PHONE:
PHONE
Phone number cannot be empty
MESSAGE:
MESSAGE
Message cannot be empty

The site is protected by reCAPTCHA and the Google Privacy Policy and Terms of
Service apply.


Send


THANK YOU!

Your message has been received. We will reply using one of the contact methods
provided in your submission.


SORRY, THERE WAS A PROBLEM

Your message could not be sent. Please refresh the page and try again in a few
minutes, or reach out directly using the agent contact information below.

Vincent Minelli

The Agency

DRE: #01926199 Office: 510-326-8034

vincentminelli@gmail.com

minellihomes.com

Dani O'connell

The Agency

Broker Associate

DRE: #01882902 Cell: 9257862176 Office: 9257862176

dani.oconnell@theagencyre.com

Email Us Email Us Email Us
Home
Agent Login

Disclaimers

Floor Plans:. All square footage is approximate. Floor plans, dimensions and
square footage are for marketing purposes only.

Schools:. Interested parties should independently verify school district
availability. School attendance is not guaranteed.

Information Accuracy:. Open Homes has not investigated or verified the accuracy
of information on this website. Buyers are responsible for verifying all
information they deem important.

Contact Us
Privacy Policy
Terms of Use
Accessibility Policy
Enable High-Contrast Mode

Follow us:

Facebook
Instagram
Vimeo
Twitter

© 2024 Open Homes Photography
Made with in California

1 / 56

Cross Alcatraz Avenue, which divides Oakland and Berkeley, and you’ll find
yourself in Rockridge, one of Oakland's most desirable, charming, and convenient
neighborhoods. Housing in Rockridge is a combination of charming bungalows,
cottages, classic Arts and Crafts dwellings, and large brown-shingle houses. Its
leafy streets are mainly residential. Rockridge offers an easy commute into 
San Francisco via the Bay Area Rapid Transit (BART) station, as well as access
to the University of California, Berkeley Campus. The 100-year-old, four-acre
campus of the California College of Art and Crafts is nearby. Food-and-drink
purveyors in Rockridge provide the best from around the world and local farms.
Rockridge Market Hall, which takes its cue from the French Marché, offers
numerous individual food and flower shops open to the sidewalk. Dozens of
restaurants, cafes, and boutiques line bustling College Avenue, Rockridge's main
drag.
1 / 140